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

14 lines
185 B
Go

package block
type RedstoneWire struct {
East string
North string
Power string
South string
West string
}
func (RedstoneWire) ID() string {
return "minecraft:redstone_wire"
}