Files
minego/pkg/protocol/packet/configuration/client/keep_alive.go
2025-08-27 20:28:44 +08:00

19 lines
370 B
Go

package client
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type ConfigKeepAlive struct {
ID int64
}
func (*ConfigKeepAlive) PacketID() packetid.ClientboundPacketID {
return packetid.ClientboundConfigKeepAlive
}
func init() {
registerPacket(packetid.ClientboundConfigKeepAlive, func() ClientboundPacket {
return &ConfigKeepAlive{}
})
}