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