bevy/examples/wasm/index.html
Tomasz Sterna 2b0ee24a5d
Implement single threaded task scheduler for WebAssembly (#496)
* Add hello_wasm example

* Implement single threaded task scheduler for WebAssembly
2020-09-15 18:05:31 -07:00

9 lines
160 B
HTML

<html>
<head>
<meta charset="UTF-8" />
</head>
<script type="module">
import init from './target/headless_wasm.js'
init()
</script>
</html>