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

12 lines
160 B
Go

package block
type StoneButton struct {
Face string
Facing string
Powered string
}
func (StoneButton) ID() string {
return "minecraft:stone_button"
}