Files
go-mc/level/block/chorus_plant.go
2022-03-09 10:47:46 +08:00

15 lines
196 B
Go

package block
type ChorusPlant struct {
Down string
East string
North string
South string
Up string
West string
}
func (ChorusPlant) ID() string {
return "minecraft:chorus_plant"
}