()
| 38 | } |
| 39 | |
| 40 | private update(): void{ |
| 41 | // Erase everything |
| 42 | this.renderArea.resetAllButSize(); |
| 43 | |
| 44 | // Back to the map button |
| 45 | this.addBackToMainMapButton(this.renderArea, "thePierBackToTheMapButton"); |
| 46 | |
| 47 | // Draw the pier |
| 48 | this.renderArea.drawArray(Database.getAscii("places/pier"), 0, 3); |
| 49 | |
| 50 | // Add the button to go to the lighthouse |
| 51 | this.addLighthouseButton(3, 27); |
| 52 | |
| 53 | // Add the button to jump into the sea |
| 54 | this.addTheSeaButton(52, 9); |
| 55 | } |
| 56 | } |
no test coverage detected