index.html 509 B

1234567891011121314151617181920
  1. <html>
  2. <head>
  3. <meta charset="UTF-8" />
  4. <script src="dist/frontend.js"></script>
  5. <style>
  6. .mainscreen {
  7. border: solid 1px;
  8. }
  9. </style>
  10. </head>
  11. <body>
  12. <canvas class="mainscreen" id="screen"></canvas>
  13. <div id="game-debug-out"></div>
  14. <script>
  15. mainDisplay.start('screen').catch(function (err) {
  16. console.error(err.toString());
  17. });
  18. </script>
  19. </body>
  20. </html>