(game: Game)
| 6 | |
| 7 | // Constructor |
| 8 | constructor(game: Game){ |
| 9 | super(game); |
| 10 | |
| 11 | this.renderArea.resizeFromArray(Database.getAscii("places/theCave/exit"), 42, 3); |
| 12 | this.update(); |
| 13 | } |
| 14 | |
| 15 | // getRenderArea() |
| 16 | public getRenderArea(): RenderArea{ |
nothing calls this directly
no test coverage detected