Files
Erupe/network/mhfpacket/msg_mhf_reserve010f.go
2019-12-27 02:45:00 +09:00

24 lines
632 B
Go

package mhfpacket
import (
"github.com/Andoryuuta/Erupe/network"
"github.com/Andoryuuta/byteframe"
)
// MsgMhfReserve010F represents the MSG_MHF_reserve010F
type MsgMhfReserve010F struct{}
// Opcode returns the ID associated with this packet type.
func (m *MsgMhfReserve010F) Opcode() network.PacketID {
return network.MSG_MHF_reserve010F
}
// Parse parses the packet from binary
func (m *MsgMhfReserve010F) Parse(bf *byteframe.ByteFrame) error {
panic("Not implemented")
}
// Build builds a binary packet from the current data.
func (m *MsgMhfReserve010F) Build(bf *byteframe.ByteFrame) error {
panic("Not implemented")
}