17 lines
310 B
Go
17 lines
310 B
Go
package component
|
|
|
|
import "git.konjactw.dev/patyhank/minego/codec/data/slot"
|
|
|
|
//codec:gen
|
|
type TropicalFishPattern struct {
|
|
Pattern int32 `mc:"VarInt"`
|
|
}
|
|
|
|
func (*TropicalFishPattern) Type() slot.ComponentID {
|
|
return 79
|
|
}
|
|
|
|
func (*TropicalFishPattern) ID() string {
|
|
return "minecraft:tropical_fish/pattern"
|
|
}
|