All files / games/roguelike/src/game/screens lose.ts

100% Statements 9/9
100% Branches 0/0
100% Functions 3/3
100% Lines 8/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23  12x 12x 12x     6x       1x 22x       2x     12x        
import { DisplayInterface } from "jga-games-display";
 
import { World } from "jga-games-engine";
 
import { Screen } from "jga-games-screens";
 
export class LoseScreen extends Screen {
    public constructor(engine: World, display: DisplayInterface) {
        super("Lose", engine, display);
    }
 
    public render(): void {
        // Render our prompt to the screen
        for (let i = 0; i < 22; i++) {
            this.display.drawText({ x: 2, y: i + 1 }, "%b{red}You lose! :(");
        }
    }
 
    public handleInput(): string | null {
        return null;
    }
}