12 lines
181 B
Go
12 lines
181 B
Go
package commands
|
|
|
|
type Serializeable interface {
|
|
MarshalPacket() ([]byte, error)
|
|
UnmarshalPacket([]byte) error
|
|
}
|
|
|
|
type Command interface {
|
|
Serializeable
|
|
GetCommandId() uint16
|
|
}
|