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