Autogenerate packet type stubs

This commit is contained in:
Andrew Gutekanst
2019-12-27 02:45:00 +09:00
parent d893059971
commit e38b725662
439 changed files with 12205 additions and 9 deletions

View File

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