(renderArea: RenderArea)
| 12 | |
| 13 | // Public methods |
| 14 | public draw(renderArea: RenderArea): void{ |
| 15 | // Draw the "main menu" text |
| 16 | renderArea.drawString("Main menu", 22, 0); |
| 17 | |
| 18 | // Mother class draw method |
| 19 | super.draw(renderArea); |
| 20 | } |
| 21 | } |
nothing calls this directly
no test coverage detected