()
| 35 | |
| 36 | // Private methods |
| 37 | private actionSmokes(): void{ |
| 38 | // We make the smokes move |
| 39 | for(var i = 0; i < this.smokes.length; i++){ |
| 40 | this.smokes[i].move(); |
| 41 | } |
| 42 | |
| 43 | // We update on the page |
| 44 | this.update(); |
| 45 | this.getGame().updatePlace(); |
| 46 | } |
| 47 | |
| 48 | private update(): void{ |
| 49 | // Erase everything |
nothing calls this directly
no test coverage detected