()
| 173 | } |
| 174 | |
| 175 | private clickedThrowCandiesButton(): void{ |
| 176 | if(this.getGame().getCandies().getCurrent() >= 10){ |
| 177 | this.getGame().getCandies().transferTo(this.getGame().getCandiesThrown(), 10); |
| 178 | this.update(); |
| 179 | this.getGame().updatePlace(); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | private openBox(): void{ |
| 184 | // The box is now opened |
nothing calls this directly
no test coverage detected