mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-16 17:05:03 +01:00
Add MSG_MHF_GET_GACHA_POINT parser
This commit is contained in:
@@ -6,7 +6,9 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// MsgMhfGetGachaPoint represents the MSG_MHF_GET_GACHA_POINT
|
// MsgMhfGetGachaPoint represents the MSG_MHF_GET_GACHA_POINT
|
||||||
type MsgMhfGetGachaPoint struct{}
|
type MsgMhfGetGachaPoint struct {
|
||||||
|
AckHandle uint32
|
||||||
|
}
|
||||||
|
|
||||||
// Opcode returns the ID associated with this packet type.
|
// Opcode returns the ID associated with this packet type.
|
||||||
func (m *MsgMhfGetGachaPoint) Opcode() network.PacketID {
|
func (m *MsgMhfGetGachaPoint) Opcode() network.PacketID {
|
||||||
@@ -15,10 +17,11 @@ func (m *MsgMhfGetGachaPoint) Opcode() network.PacketID {
|
|||||||
|
|
||||||
// Parse parses the packet from binary
|
// Parse parses the packet from binary
|
||||||
func (m *MsgMhfGetGachaPoint) Parse(bf *byteframe.ByteFrame) error {
|
func (m *MsgMhfGetGachaPoint) Parse(bf *byteframe.ByteFrame) error {
|
||||||
panic("Not implemented")
|
m.AckHandle = bf.ReadUint32()
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build builds a binary packet from the current data.
|
// Build builds a binary packet from the current data.
|
||||||
func (m *MsgMhfGetGachaPoint) Build(bf *byteframe.ByteFrame) error {
|
func (m *MsgMhfGetGachaPoint) Build(bf *byteframe.ByteFrame) error {
|
||||||
panic("Not implemented")
|
panic("Not implemented")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user