()
| 11 | } |
| 12 | |
| 13 | func (b CherryButton) Encode() (string, BlockProperties) { |
| 14 | return "minecraft:cherry_button", BlockProperties{ |
| 15 | "face": b.Face, |
| 16 | "facing": b.Facing, |
| 17 | "powered": strconv.FormatBool(b.Powered), |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func (b CherryButton) New(props BlockProperties) Block { |
| 22 | return CherryButton{ |
nothing calls this directly
no outgoing calls
no test coverage detected