(renderArea: RenderArea)
| 27 | |
| 28 | // Public methods |
| 29 | public draw(renderArea: RenderArea): void{ |
| 30 | renderArea.drawString(this.text, this.quest.getRealQuestPosition().x + this.quest.getGlobalDrawingOffset().x + this.position.x, this.quest.getRealQuestPosition().y + this.quest.getGlobalDrawingOffset().y + this.position.y); |
| 31 | } |
| 32 | |
| 33 | public update(): boolean{ |
| 34 | if(this.isGoingRight){ |
nothing calls this directly
no test coverage detected