18 lines
338 B
Go
18 lines
338 B
Go
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{}
|
|
})
|
|
}
|