Files
minego/codec/packet/configuration/server/client_information.go
2025-06-20 10:37:08 +08:00

21 lines
467 B
Go

package server
import (
"git.konjactw.dev/patyhank/minego/codec/packet/game/server"
"github.com/Tnze/go-mc/data/packetid"
)
type ConfigClientInformation struct {
server.ClientInformation
}
func (ConfigClientInformation) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundConfigClientInformation
}
func init() {
registerPacket(packetid.ServerboundConfigClientInformation, func() ServerboundPacket {
return &ConfigClientInformation{}
})
}