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

12 lines
153 B
Go

package block
type Chest struct {
Facing string
Type string
Waterlogged string
}
func (Chest) ID() string {
return "minecraft:chest"
}