abstreet/game/index.html

18 lines
288 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<script type="module">
import { default as init } from './game.js';
async function run() {
await init('./game_bg.wasm');
}
run();
</script>
</head>
<body>
<h1 id="loading">Loading...</h1>
</body>
<html>