package mhfpacket import ( "errors" "erupe-ce/network" "erupe-ce/utils/byteframe" ) // MsgSysReserve1AD represents the MSG_SYS_reserve1AD type MsgSysReserve1AD struct{} // Opcode returns the ID associated with this packet type. func (m *MsgSysReserve1AD) Opcode() network.PacketID { return network.MSG_SYS_reserve1AD } // Parse parses the packet from binary func (m *MsgSysReserve1AD) Parse(bf *byteframe.ByteFrame) error { return errors.New("NOT IMPLEMENTED") } // Build builds a binary packet from the current data. func (m *MsgSysReserve1AD) Build(bf *byteframe.ByteFrame) error { return errors.New("NOT IMPLEMENTED") }