mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-24 17:37:22 +03:00
18 lines
288 B
HTML
18 lines
288 B
HTML
<!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>
|