mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-11-29 12:43:38 +03:00
20 lines
385 B
HTML
20 lines
385 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<script type="module">
|
||
|
import { default as init } from './widgetry_demo.js';
|
||
|
|
||
|
async function run() {
|
||
|
await init('./widgetry_demo_bg.wasm');
|
||
|
}
|
||
|
|
||
|
run();
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="container">
|
||
|
<canvas id="canvas" width="1800" height="1000"></canvas>
|
||
|
</div>
|
||
|
</body>
|
||
|
<html>
|