diff options
Diffstat (limited to 'test-client/index.html')
| -rw-r--r-- | test-client/index.html | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/test-client/index.html b/test-client/index.html new file mode 100644 index 00000000..12079351 --- /dev/null +++ b/test-client/index.html @@ -0,0 +1,22 @@ +<!DOCTYPE html> +<html lang="en"> +    <head> +        <meta charset="UTF-8" /> +        <meta name="viewport" content="width=device-width, initial-scale=1.0" /> +        <title>Undercooked - Test Client</title> +        <script src="./main.js" type="module"></script> +        <style> +            body { +                margin: 0px; +                overflow: hidden; +                background-color: black; +            } +            noscript { +                color: white; +            } +        </style> +    </head> +    <body> +        <noscript>the game is written in javascript btw.</noscript> +    </body> +</html> | 
