12 lines
172 B
Go
12 lines
172 B
Go
package block
|
|
|
|
type PoweredRail struct {
|
|
Powered string
|
|
Shape string
|
|
Waterlogged string
|
|
}
|
|
|
|
func (PoweredRail) ID() string {
|
|
return "minecraft:powered_rail"
|
|
}
|