Files
minego/pkg/protocol/packet/game/server/debug_sample_subscription.go
2025-08-27 20:28:44 +08:00

19 lines
432 B
Go

package server
import "git.konjactw.dev/falloutBot/go-mc/data/packetid"
//codec:gen
type DebugSampleSubscription struct {
SampleType int32 `mc:"VarInt"`
}
func (*DebugSampleSubscription) PacketID() packetid.ServerboundPacketID {
return packetid.ServerboundDebugSampleSubscription
}
func init() {
registerPacket(packetid.ServerboundDebugSampleSubscription, func() ServerboundPacket {
return &DebugSampleSubscription{}
})
}