Make char savedata persistent

This commit is contained in:
Andrew Gutekanst
2020-02-03 14:07:33 -05:00
parent 0893f75c3f
commit 773429ce15
4 changed files with 36 additions and 6 deletions

View File

@@ -6,7 +6,9 @@ import (
)
// MsgMhfLoaddata represents the MSG_MHF_LOADDATA
type MsgMhfLoaddata struct{}
type MsgMhfLoaddata struct {
AckHandle uint32
}
// Opcode returns the ID associated with this packet type.
func (m *MsgMhfLoaddata) Opcode() network.PacketID {
@@ -15,10 +17,11 @@ func (m *MsgMhfLoaddata) Opcode() network.PacketID {
// Parse parses the packet from binary
func (m *MsgMhfLoaddata) Parse(bf *byteframe.ByteFrame) error {
panic("Not implemented")
m.AckHandle = bf.ReadUint32()
return nil
}
// Build builds a binary packet from the current data.
func (m *MsgMhfLoaddata) Build(bf *byteframe.ByteFrame) error {
panic("Not implemented")
}
}