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

19 lines
332 B
Go

package server
import "github.com/Tnze/go-mc/data/packetid"
//codec:gen
type ConfigPong struct {
ID int32
}
func (ConfigPong) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundConfigPong
}
func init() {
registerPacket(packetid.ServerboundConfigPong, func() ServerboundPacket {
return &ConfigPong{}
})
}