()
| 73 | } |
| 74 | |
| 75 | private draw(): void{ |
| 76 | // Erase everything |
| 77 | this.renderArea.resetAllButSize(); |
| 78 | |
| 79 | // Draw the computer |
| 80 | this.renderArea.drawArray(Database.getAscii("general/theComputer/computer"), 19, 0); |
| 81 | |
| 82 | // Draw the on button |
| 83 | this.drawOnButton(69, 14); |
| 84 | |
| 85 | // Draw the lines |
| 86 | this.drawLines(22, 16, 6); |
| 87 | } |
| 88 | |
| 89 | private drawOnButton(x: number, y: number): void{ |
| 90 | // Draw the button |
no test coverage detected