Files
minego/pkg/protocol/packet/game/server/pong.go

18 lines
293 B
Go

package server
import "github.com/Tnze/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{}
})
}