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 24 | <svelte:options customElement="roguelike-routes" /> <style global lang="scss"> @import "../app"; </style> <script lang="ts"> import Console from "$lib/console.svelte"; import Game from "$lib/game.svelte"; import Links from "$lib/links.svelte"; </script> <svelte:head> <title>Space Roguelike</title> <html lang="en-GB"></html> </svelte:head> <!-- eslint-disable-next-line no-undef --> <h1>Welcome to Roguelike ({__APP_VERSION__})</h1> <Game /> <Console /> <Links /> |