(line: TheComputerLine)
| 65 | } |
| 66 | |
| 67 | private addLine(line: TheComputerLine): void{ |
| 68 | this.lines.push(line); |
| 69 | } |
| 70 | |
| 71 | private addMisunderstood(): void{ |
| 72 | this.addLine(new TheComputerLine(TheComputerLineType.TEXT, "This command was misunderstood. Try \"help\" for a list of available commands.")); |
no outgoing calls
no test coverage detected