()
| 9 | } |
| 10 | |
| 11 | func (b OakSapling) Encode() (string, BlockProperties) { |
| 12 | return "minecraft:oak_sapling", BlockProperties{ |
| 13 | "stage": strconv.Itoa(b.Stage), |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func (b OakSapling) New(props BlockProperties) Block { |
| 18 | return OakSapling{ |
nothing calls this directly
no outgoing calls
no test coverage detected