12 lines
169 B
Go
12 lines
169 B
Go
package block
|
|
|
|
type LimeCandle struct {
|
|
Candles string
|
|
Lit string
|
|
Waterlogged string
|
|
}
|
|
|
|
func (LimeCandle) ID() string {
|
|
return "minecraft:lime_candle"
|
|
}
|