Files
minego/pkg/protocol/packet/configuration/client/store_cookie.go
2025-08-27 20:28:44 +08:00

20 lines
420 B
Go

package client
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type ConfigStoreCookie struct {
Key string `mc:"Identifier"`
Payload []int8
}
func (*ConfigStoreCookie) PacketID() packetid.ClientboundPacketID {
return packetid.ClientboundConfigStoreCookie
}
func init() {
registerPacket(packetid.ClientboundConfigStoreCookie, func() ClientboundPacket {
return &ConfigStoreCookie{}
})
}