Files
minego/codec/component/debug_stick_state.go
2025-06-19 15:01:07 +08:00

20 lines
331 B
Go

package component
import (
"git.konjactw.dev/patyhank/minego/codec/data/slot"
"github.com/Tnze/go-mc/nbt"
)
//codec:gen
type DebugStickState struct {
Data nbt.RawMessage `mc:"NBT"`
}
func (*DebugStickState) Type() slot.ComponentID {
return 48
}
func (*DebugStickState) ID() string {
return "minecraft:debug_stick_state"
}