(game: Game)
| 13 | |
| 14 | // Constructor |
| 15 | constructor(game: Game){ |
| 16 | super(game); |
| 17 | |
| 18 | // Resize the area |
| 19 | this.renderArea.resizeFromArray(Database.getAscii("places/village/village"), 0, 3); |
| 20 | |
| 21 | // Update |
| 22 | this.update(); |
| 23 | } |
| 24 | |
| 25 | // Public methods |
| 26 | public willBeDisplayed(): void{ |
nothing calls this directly
no test coverage detected