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

15 lines
212 B
Go

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