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