14 lines
185 B
Go
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"
|
|
}
|