Implement some packet parsers

This commit is contained in:
Andrew Gutekanst
2019-12-27 04:01:29 +09:00
parent e38b725662
commit d1a9d5a7d0
13 changed files with 127 additions and 41 deletions

View File

@@ -15,10 +15,10 @@ func (m *MsgSysExtendThreshold) Opcode() network.PacketID {
// Parse parses the packet from binary
func (m *MsgSysExtendThreshold) Parse(bf *byteframe.ByteFrame) error {
panic("Not implemented")
return nil
}
// Build builds a binary packet from the current data.
func (m *MsgSysExtendThreshold) Build(bf *byteframe.ByteFrame) error {
panic("Not implemented")
return nil
}