-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Canvas Game</title>
<style>
img { display: none; }
</style>
</head>
<body>
<canvas id="canvas" width="800" height="600"></canvas>
<p id="fps" style="float:right; font-family: monospace"></p>
<img src="src/assets/menu.png" id="menu_img">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/src/dom-to-image.min.js"></script>
<script src="src/PRNG.js"></script>
<script src="src/vars.js"></script>
<script src="src/helpers.js"></script>
<script src="src/generate_space.js"></script>
<script src="src/graphics.js"></script>
<script src="src/collisions.js"></script>
<script src="src/physics.js"></script>
<script src="src/preprocessors.js"></script>
<script src="src/loops.js"></script>
<script src="src/main.js"></script>
<!-- <script src="game.min.js"></script> -->
</body>
</html>