| 1234567891011121314151617181920 |
- <html>
- <head>
- <meta charset="UTF-8" />
- <script src="dist/frontend.js"></script>
- <style>
- .mainscreen {
- border: solid 1px;
- }
- </style>
- </head>
- <body>
- <canvas class="mainscreen" id="screen"></canvas>
- <div id="game-debug-out"></div>
- <script>
- mainDisplay.start('screen').catch(function (err) {
- console.error(err.toString());
- });
- </script>
- </body>
- </html>
|