(game: Game)
| 9 | |
| 10 | // Constructor |
| 11 | constructor(game: Game){ |
| 12 | super(game); |
| 13 | |
| 14 | this.renderArea.resizeFromArray(Database.getAscii("places/village/thirdHouse"), 0, 3); |
| 15 | this.update(); |
| 16 | } |
| 17 | |
| 18 | // getRenderArea() |
| 19 | public getRenderArea(): RenderArea{ |
nothing calls this directly
no test coverage detected