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