package mhfpacket import ( "errors" "erupe-ce/network" "erupe-ce/utils/byteframe" ) // MsgMhfPlayStepupGacha represents the MSG_MHF_PLAY_STEPUP_GACHA type MsgMhfPlayStepupGacha struct { AckHandle uint32 GachaID uint32 RollType uint8 GachaType uint8 } // Opcode returns the ID associated with this packet type. func (m *MsgMhfPlayStepupGacha) Opcode() network.PacketID { return network.MSG_MHF_PLAY_STEPUP_GACHA } // Parse parses the packet from binary func (m *MsgMhfPlayStepupGacha) Parse(bf *byteframe.ByteFrame) error { m.AckHandle = bf.ReadUint32() m.GachaID = bf.ReadUint32() m.RollType = bf.ReadUint8() m.GachaType = bf.ReadUint8() return nil } // Build builds a binary packet from the current data. func (m *MsgMhfPlayStepupGacha) Build(bf *byteframe.ByteFrame) error { return errors.New("NOT IMPLEMENTED") }