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