(ourSavingName: string)
| 70 | } |
| 71 | |
| 72 | private clickedOnStone(ourSavingName: string): void{ |
| 73 | // This stone is now in the tower |
| 74 | Saving.saveBool(ourSavingName, true); |
| 75 | |
| 76 | // Update |
| 77 | this.update(); |
| 78 | this.getGame().updatePlace(); |
| 79 | } |
| 80 | |
| 81 | private drawBackground(): void{ |
| 82 | // Calculate the gap |
nothing calls this directly
no test coverage detected