tkcashgame_v4/app/eonline/internal/config/bright/serialization/ISerializable.go

8 lines
133 B
Go
Raw Normal View History

2025-10-22 10:01:11 +00:00
package serialization
type ISerializable interface {
GetTypeId() int32
Serialize(buf *ByteBuf)
Deserialize(buf *ByteBuf) error
}