go_dreamfactory/sys/configure/bright/serialization/ISerializable.go
2022-06-23 18:38:21 +08:00

8 lines
133 B
Go

package serialization
type ISerializable interface {
GetTypeId() int32
Serialize(buf *ByteBuf)
Deserialize(buf *ByteBuf) error
}