(x: number, y: number)
| 89 | } |
| 90 | |
| 91 | private drawFire(x: number, y: number): void{ |
| 92 | // Draw the fire ascii art |
| 93 | this.renderArea.drawArray(Database.getAscii("places/castle/room2/fire"), x, y); |
| 94 | |
| 95 | // Draw the smokes |
| 96 | for(var i = 0; i < this.smokes.length; i++){ |
| 97 | this.smokes[i].draw(this.renderArea); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | private drawFireButton(x: number, y: number): void{ |
| 102 | // Add the button |