-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (28 loc) · 957 Bytes
/
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
28
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Math.io</title>
</head>
<body>
<main oncontextmenu="return false;">
<!-- Where p5.js will add the canvas -->
</main>
<!-- Libraries -->
<script src="/js/libs/p5.min.js"></script>
<script src="/js/libs/p5.clickable.min.js"></script>
<!-- Utilities -->
<script src="/js/util/random.js"></script>
<script src="/js/util/ui.js"></script>
<!-- Actual game files -->
<script src="/js/game/camera.js"></script>
<script src="/js/game/grid.js"></script>
<script src="/js/game/tile.js"></script>
<script src="/js/game/game.js"></script>
<!-- The main script -->
<script src="/js/script.js"></script>
<!-- Shows a console on the web page itself, for easier debugging on restricted computers -->
<script src="/js/util/on_page_console.js"></script>
</body>
</html>