go_dreamfactory/sys/configure/serialization/ISerializable.go
2022-05-31 13:42:54 +08:00

8 lines
133 B
Go

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