(index: number)
| 87 | } |
| 88 | |
| 89 | private clickedOnItem(index: number): void{ |
| 90 | // Set the currently selected item index |
| 91 | this.selectedItemIndex = index; |
| 92 | |
| 93 | // We shouldn't draw the intro speech anymore |
| 94 | this.shouldDrawIntroSpeech = false; |
| 95 | |
| 96 | // Update |
| 97 | this.update(); |
| 98 | this.getGame().updatePlace(); |
| 99 | } |
| 100 | |
| 101 | private drawIntroSpeech(): void{ |
| 102 | this.drawSpeech("secondHouseIntroSpeech"); |
nothing calls this directly
no test coverage detected