(nodeBlock: NodeBlock, property: string, coordindates: number[])
| 8 | node: NodeBlock |
| 9 | |
| 10 | constructor(nodeBlock: NodeBlock, property: string, coordindates: number[]) { |
| 11 | this.node = nodeBlock |
| 12 | this.property = property |
| 13 | this.contents = this.node.node.getProperty(property) |
| 14 | this.x = coordindates[0] |
| 15 | this.y = coordindates[1] |
| 16 | } |
| 17 | } |
nothing calls this directly
no test coverage detected