()
| 216 | } |
| 217 | |
| 218 | private drawTabs(): void{ |
| 219 | if(Saving.loadBool("statusBarUnlocked")){ |
| 220 | this.renderArea.drawVerticalLine("|", 28, 1, 4); |
| 221 | |
| 222 | for(var i = 0; i < this.tabs.length; i++){ |
| 223 | this.tabs[i].render(this.renderArea, 29, 1, (this.selectedTabIndex == i? true:false)); |
| 224 | } |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | private drawUpLeftCorner(character: string): void{ |
| 229 | this.renderArea.drawString(character, 0, 0); |
no test coverage detected