bevyjam/index.html

18 lines
359 B
HTML
Raw Normal View History

2022-08-21 17:17:55 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
2022-08-25 06:20:13 +00:00
<title>Bevyjam</title>
2022-08-21 17:17:55 +00:00
</head>
<body>
2022-08-26 10:38:52 +00:00
<script src="./target/bevyjam.js"></script>
<script type="text/javascript">
wasm_bindgen("./target/bevyjam_bg.wasm").then((wasm) =>{
wasm.run();
});
// import init from './target/bevyjam.js'
// init()
2022-08-21 17:17:55 +00:00
</script>
</body>
</html>