()
| 124 | } |
| 125 | |
| 126 | private createSlotsArray(): void{ |
| 127 | // Reset the array |
| 128 | this.slotsArray = []; |
| 129 | |
| 130 | // Fill it |
| 131 | for(var i = 1; i <= 5; i++){ |
| 132 | this.slotsArray.push("slot" + i.toString()); |
| 133 | this.slotsArray.push("Slot " + i.toString() + " (" + LocalSaving.getSlotSummaryAsString("slot" + i.toString()) + ")"); |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | private drawGreen(text: string, x: number, y: number, translated: boolean = false): void{ |
| 138 | this.renderArea.drawString(text, x, y, translated); |
no outgoing calls
no test coverage detected