12 lines
175 B
Go
12 lines
175 B
Go
package block
|
|
|
|
type YellowCandle struct {
|
|
Candles string
|
|
Lit string
|
|
Waterlogged string
|
|
}
|
|
|
|
func (YellowCandle) ID() string {
|
|
return "minecraft:yellow_candle"
|
|
}
|