(movement: Pos)
| 592 | } |
| 593 | |
| 594 | public forceMovingAllEntities(movement: Pos): void{ |
| 595 | for(var i = 0; i < this.entities.length; i++){ |
| 596 | this.entities[i].forceMoving(movement); |
| 597 | } |
| 598 | } |
| 599 | |
| 600 | public getCandiesDropMessage(): string{ |
| 601 | return "You gain " + Algo.pluralFormat(this.candiesFound.getCurrent(), " candy", " candies") + "."; |
no test coverage detected