(game: Game)
| 37 | |
| 38 | // Constructor |
| 39 | constructor(game: Game){ |
| 40 | super(game); |
| 41 | |
| 42 | this.createPossibleEnchantments(); |
| 43 | |
| 44 | this.renderArea.resizeFromArray(Database.getAscii("places/wishingWell"), 62, 3); |
| 45 | this.update(); |
| 46 | } |
| 47 | |
| 48 | // getRenderArea() |
| 49 | public getRenderArea(): RenderArea{ |
nothing calls this directly
no test coverage detected