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

18 lines
305 B
Go

package server
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type Pong struct {
}
func (*Pong) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundPong
}
func init() {
registerPacket(packetid.ServerboundPong, func() ServerboundPacket {
return &Pong{}
})
}