mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-16 14:12:40 -06:00
feat(wasm): add index.html
This commit is contained in:
21
index.html
Normal file
21
index.html
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<canvas id="canvas"></canvas>
|
||||||
|
<script type="text/javascript">
|
||||||
|
const Module = {
|
||||||
|
canvas: (function () {
|
||||||
|
// this is how we provide a canvas to our sdl2
|
||||||
|
return document.getElementById("canvas");
|
||||||
|
})(),
|
||||||
|
preRun: [function () {
|
||||||
|
ENV.RUST_LOG = "info,wgpu=warn"
|
||||||
|
}]
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<script src="rust-sdl2-wasm.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user