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