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

15 lines
252 B
Go

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