()
| 12 | } |
| 13 | |
| 14 | func (b Piston) Encode() (string, BlockProperties) { |
| 15 | return "minecraft:piston", BlockProperties{ |
| 16 | "extended": strconv.FormatBool(b.Extended), |
| 17 | "facing": b.Facing, |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func (b Piston) New(props BlockProperties) Block { |
| 22 | return Piston{ |
nothing calls this directly
no outgoing calls
no test coverage detected