15 lines
199 B
Go
15 lines
199 B
Go
package block
|
|
|
|
type MushroomStem struct {
|
|
Down string
|
|
East string
|
|
North string
|
|
South string
|
|
Up string
|
|
West string
|
|
}
|
|
|
|
func (MushroomStem) ID() string {
|
|
return "minecraft:mushroom_stem"
|
|
}
|