()
| 34 | |
| 35 | // update() |
| 36 | public update(): void{ |
| 37 | // Launch a magic ball! (2 chances out of 3 to launch one) |
| 38 | if(Random.oneChanceOutOf(3) == false) this.castWaterBall(); |
| 39 | |
| 40 | // Call the mother class update method |
| 41 | super.update(); |
| 42 | } |
| 43 | |
| 44 | // Private methods |
| 45 | private castWaterBall(): void{ |
nothing calls this directly
no test coverage detected