Move MHF_GET_RENGOKU_RANKING_RANK logic

This commit is contained in:
Andrew Gutekanst
2019-12-27 08:09:20 +09:00
parent 81c9b22b11
commit f3a6e72f43
4 changed files with 21 additions and 9 deletions

View File

@@ -6,7 +6,9 @@ import (
)
// MsgMhfAcquireMonthlyReward represents the MSG_MHF_ACQUIRE_MONTHLY_REWARD
type MsgMhfAcquireMonthlyReward struct{}
type MsgMhfAcquireMonthlyReward struct {
AckHandle uint32
}
// Opcode returns the ID associated with this packet type.
func (m *MsgMhfAcquireMonthlyReward) Opcode() network.PacketID {
@@ -15,10 +17,11 @@ func (m *MsgMhfAcquireMonthlyReward) Opcode() network.PacketID {
// Parse parses the packet from binary
func (m *MsgMhfAcquireMonthlyReward) Parse(bf *byteframe.ByteFrame) error {
panic("Not implemented")
m.AckHandle = bf.ReadUint32()
return nil
}
// Build builds a binary packet from the current data.
func (m *MsgMhfAcquireMonthlyReward) Build(bf *byteframe.ByteFrame) error {
panic("Not implemented")
}
}

View File

@@ -6,7 +6,9 @@ import (
)
// MsgMhfGetRengokuRankingRank represents the MSG_MHF_GET_RENGOKU_RANKING_RANK
type MsgMhfGetRengokuRankingRank struct{}
type MsgMhfGetRengokuRankingRank struct {
AckHandle uint32
}
// Opcode returns the ID associated with this packet type.
func (m *MsgMhfGetRengokuRankingRank) Opcode() network.PacketID {
@@ -15,10 +17,11 @@ func (m *MsgMhfGetRengokuRankingRank) Opcode() network.PacketID {
// Parse parses the packet from binary
func (m *MsgMhfGetRengokuRankingRank) Parse(bf *byteframe.ByteFrame) error {
panic("Not implemented")
m.AckHandle = bf.ReadUint32()
return nil
}
// Build builds a binary packet from the current data.
func (m *MsgMhfGetRengokuRankingRank) Build(bf *byteframe.ByteFrame) error {
panic("Not implemented")
}
}