Files
go-mc/level/block/smoker.go
2022-03-09 10:47:46 +08:00

11 lines
126 B
Go

package block
type Smoker struct {
Facing string
Lit string
}
func (Smoker) ID() string {
return "minecraft:smoker"
}