(x: number, y: number)
| 91 | } |
| 92 | |
| 93 | private drawRoom3(x: number, y: number): void{ |
| 94 | // Buttons |
| 95 | this.renderArea.addMultipleAsciiButtons("castleRoom3Button", |
| 96 | x, x+1, y, |
| 97 | x, x+1, y+1); |
| 98 | |
| 99 | // Comment |
| 100 | this.renderArea.addFullComment(x - 6, y, Database.getText("castleARoomComment"), Database.getTranslatedText("castleARoomComment"), "castleRoom3Comment"); |
| 101 | |
| 102 | // Interactions |
| 103 | this.renderArea.addLinkOver(".castleRoom3Button, .castleRoom3Comment", ".castleRoom3Comment"); |
| 104 | this.renderArea.addLinkCall(".castleRoom3Button, .castleRoom3Comment", new CallbackCollection(this.goToRoom3.bind(this))); |
| 105 | } |
| 106 | |
| 107 | private drawStairs(x: number, y: number): void{ |
| 108 | // Buttons |
no test coverage detected