()
| 165 | } |
| 166 | |
| 167 | private clickedEatCandiesButton(): void{ |
| 168 | if(this.getGame().getCandies().getCurrent() >= 1){ |
| 169 | this.getGame().getCandies().transferTo(this.getGame().getCandiesEaten()); |
| 170 | this.update(); |
| 171 | this.getGame().updatePlace(); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | private clickedThrowCandiesButton(): void{ |
| 176 | if(this.getGame().getCandies().getCurrent() >= 10){ |
nothing calls this directly
no test coverage detected