Initial commit

This commit is contained in:
2022-07-29 16:21:08 +02:00
commit 313b188873
10 changed files with 657 additions and 0 deletions

21
index.html Normal file
View File

@@ -0,0 +1,21 @@
<!doctype html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<style>
* {
padding: 0px;
margin: 0px;
overflow: hidden;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<script type="module">
import init from './pkg/game.js';
async function run() { await init(); }
run();
</script>
</body>
</html>