8 lines
133 B
Go
8 lines
133 B
Go
|
package serialization
|
||
|
|
||
|
type ISerializable interface {
|
||
|
GetTypeId() int32
|
||
|
Serialize(buf *ByteBuf)
|
||
|
Deserialize(buf *ByteBuf) error
|
||
|
}
|