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

14 lines
186 B
Go

package block
type BirchDoor struct {
Facing string
Half string
Hinge string
Open string
Powered string
}
func (BirchDoor) ID() string {
return "minecraft:birch_door"
}