diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2023-02-27 22:35:28 +0100 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2023-02-27 22:35:28 +0100 |
| commit | 4db4b5791cd1359519933871ab65412acafb71d7 (patch) | |
| tree | 24c9b78757e23793384481691745c8d3ff0db621 /index.html | |
| parent | 9f7331ca8b60cd91ee2493fa1872410c5755d1bd (diff) | |
| download | 1942-4db4b5791cd1359519933871ab65412acafb71d7.tar.gz 1942-4db4b5791cd1359519933871ab65412acafb71d7.tar.zst 1942-4db4b5791cd1359519933871ab65412acafb71d7.zip | |
v1.1.0
Refactor of loading screen
Faster loading time by concurently awaiting all promises
Minor bug fix
Added litle help menu at the start of the game
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -8,8 +8,11 @@ <title>1942</title> </head> -<body bgcolor="black"> - <canvas width="320" height="200" style="background-color: grey;"></canvas> +<body> + <div class="h-gradient">GAME IS LOADING</div> + <canvas width="320" height="200"></canvas> + <button>START THE GAME</button> + <h1 class="help">/ is fire button, WSAD to move, spacebar to roll</h1> <script type="module" src="/src/main.ts"></script> </body> |
