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

15 lines
255 B
Go

package block
type RedNetherBrickWall struct {
East string
North string
South string
Up string
Waterlogged string
West string
}
func (RedNetherBrickWall) ID() string {
return "minecraft:red_nether_brick_wall"
}