(game: Game)
| 22 | |
| 23 | // Constructor |
| 24 | constructor(game: Game){ |
| 25 | super(game); |
| 26 | |
| 27 | // Resize |
| 28 | this.resize(); |
| 29 | |
| 30 | // Create the slots array |
| 31 | this.createSlotsArray(); |
| 32 | |
| 33 | // Update |
| 34 | this.update(); |
| 35 | } |
| 36 | |
| 37 | // getRenderArea() |
| 38 | public getRenderArea(): RenderArea{ |
nothing calls this directly
no test coverage detected