initial commit

This commit is contained in:
2026-01-30 01:14:10 +01:00
commit 0fce5e87c1
3 changed files with 110 additions and 0 deletions

15
web/index.html Normal file
View File

@@ -0,0 +1,15 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Ebitengine Game</title>
</head>
<body>
<script src="wasm_exec.js"></script>
<script>
const go = new Go();
WebAssembly.instantiateStreaming(fetch("game.wasm"), go.importObject)
.then(r => go.run(r.instance));
</script>
</body>
</html>