(game: Game)
| 23 | |
| 24 | // Constructor |
| 25 | constructor(game: Game){ |
| 26 | super(game); |
| 27 | |
| 28 | // We create the questions array |
| 29 | this.createQuestionsArray(); |
| 30 | |
| 31 | // We resize and update |
| 32 | this.renderArea.resizeFromArray(Database.getAscii("places/lighthouse/lighthouse"), 0, 4); // 4 in order to add a space below the lighthouse, so that it looks nicer |
| 33 | this.update(); |
| 34 | } |
| 35 | |
| 36 | // getRenderArea() |
| 37 | public getRenderArea(): RenderArea{ |
nothing calls this directly
no test coverage detected