18 lines
348 B
Go
18 lines
348 B
Go
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{}
|
|
})
|
|
}
|