mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-21 03:15:36 +01:00
Add MSG_MHF_SAVE_FAVORITE_QUEST parser
This commit is contained in:
@@ -6,7 +6,11 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// MsgMhfSaveFavoriteQuest represents the MSG_MHF_SAVE_FAVORITE_QUEST
|
// MsgMhfSaveFavoriteQuest represents the MSG_MHF_SAVE_FAVORITE_QUEST
|
||||||
type MsgMhfSaveFavoriteQuest struct{}
|
type MsgMhfSaveFavoriteQuest struct {
|
||||||
|
AckHandle uint32
|
||||||
|
DataSize uint16
|
||||||
|
Data []byte
|
||||||
|
}
|
||||||
|
|
||||||
// Opcode returns the ID associated with this packet type.
|
// Opcode returns the ID associated with this packet type.
|
||||||
func (m *MsgMhfSaveFavoriteQuest) Opcode() network.PacketID {
|
func (m *MsgMhfSaveFavoriteQuest) Opcode() network.PacketID {
|
||||||
@@ -15,10 +19,12 @@ func (m *MsgMhfSaveFavoriteQuest) Opcode() network.PacketID {
|
|||||||
|
|
||||||
// Parse parses the packet from binary
|
// Parse parses the packet from binary
|
||||||
func (m *MsgMhfSaveFavoriteQuest) Parse(bf *byteframe.ByteFrame) error {
|
func (m *MsgMhfSaveFavoriteQuest) Parse(bf *byteframe.ByteFrame) error {
|
||||||
panic("Not implemented")
|
m.AckHandle = bf.ReadUint32()
|
||||||
|
m.DataSize = bf.ReadUint16()
|
||||||
|
m.Data = bf.ReadBytes(m.DataSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Build builds a binary packet from the current data.
|
// Build builds a binary packet from the current data.
|
||||||
func (m *MsgMhfSaveFavoriteQuest) Build(bf *byteframe.ByteFrame) error {
|
func (m *MsgMhfSaveFavoriteQuest) Build(bf *byteframe.ByteFrame) error {
|
||||||
panic("Not implemented")
|
panic("Not implemented")
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user