Files
frigg/template/web/index.html
T
2026-07-27 16:46:46 +01:00

27 lines
642 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>frigg</title>
</head>
<body>
<script type="text/javascript" src="consoleApi.js"></script>
<script type="text/javascript" src="odin.js"></script>
<script type="text/javascript">
"use strict";
(async () => {
let mem = new odin.WasmMemoryInterface()
let apis = {
'console_api' : new ConsoleApi(mem),
};
await odin.runWasm("./game.wasm", null, apis, mem);
})();
</script>
</body>
</html>