10 lines
127 B
Go
10 lines
127 B
Go
package block
|
|
|
|
type RedstoneLamp struct {
|
|
Lit string
|
|
}
|
|
|
|
func (RedstoneLamp) ID() string {
|
|
return "minecraft:redstone_lamp"
|
|
}
|