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