refactor package
This commit is contained in:
17
pkg/protocol/packet/configuration/client/reset_chat.go
Normal file
17
pkg/protocol/packet/configuration/client/reset_chat.go
Normal file
@ -0,0 +1,17 @@
|
||||
package client
|
||||
|
||||
import "github.com/Tnze/go-mc/data/packetid"
|
||||
|
||||
//codec:gen
|
||||
type ConfigResetChat struct {
|
||||
}
|
||||
|
||||
func (ConfigResetChat) PacketID() packetid.ClientboundPacketID {
|
||||
return packetid.ClientboundConfigResetChat
|
||||
}
|
||||
|
||||
func init() {
|
||||
registerPacket(packetid.ClientboundConfigResetChat, func() ClientboundPacket {
|
||||
return &ConfigResetChat{}
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user