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

12 lines
175 B
Go

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