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

19 lines
345 B
Go

package server
import "git.konjactw.dev/falloutBot/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{}
})
}