diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-15 17:17:48 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-06-15 17:17:48 -0400 |
commit | 9e43bcbfe9a4ec8a81d4766f562967f5406af068 (patch) | |
tree | fb17724bd545f6771a5e5d58c05d98f84ef130bb /client/index.html | |
parent | fix bug bug fix (diff) | |
download | tuxman-9e43bcbfe9a4ec8a81d4766f562967f5406af068.tar.gz tuxman-9e43bcbfe9a4ec8a81d4766f562967f5406af068.tar.bz2 tuxman-9e43bcbfe9a4ec8a81d4766f562967f5406af068.zip |
better map bg renderer
Diffstat (limited to 'client/index.html')
-rw-r--r-- | client/index.html | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/client/index.html b/client/index.html index 50ae8ef..fb1e66e 100644 --- a/client/index.html +++ b/client/index.html @@ -1,9 +1,14 @@ <!DOCTYPE html> <html> <head> - <link rel="stylesheet" href="/css/main.css"/> + <link rel="stylesheet" href="css/main.css"/> </head> <body> + <img src="img/wall_atlas.png" id="atlas" style="display: none;"/> + <div id="container" style="display: none;"> + <canvas id="canvas" style="display: none;"></canvas> + </div> + <style id="style"></style> <div id="center"> <div id="fps"></div> <form id="join" autocomplete="off"> @@ -16,8 +21,7 @@ <div id="players"></div> <input type="button" id="start" value="Start Game"/> </div> - <canvas id="can"></canvas> </div> - <script src="/js/main.js" type="module"></script> + <script src="js/main.js" type="module"></script> </body> </html> |