-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.29 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
28
29
30
31
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="index.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>
<script src="src/utils.js"></script>
<script src="src/grids/cell.js"></script>
<script src="src/grids/square-grid.js"></script>
<script src="src/maze-gen/random-prims.js"></script>
<script src="src/maze-gen/backtracker.js"></script>
<script src="src/maze-solve/bfs.js"></script>
<script src="src/maze-solve/astar.js"></script>
<script src="src/animation/flasher.js"></script>
<script src="src/animation/sprite.js"></script>
<script src="src/animation/lightning.js"></script>
<script src="src/animation/skeleton-assets.js"></script>
<script src="src/animation/ghost-assets.js"></script>
<script src="src/animation/npc.js"></script>
<script src="src/animation/background-assets.js"></script>
<script src="src/animation/background.js"></script>
<script src="src/sketch.js"></script>
</head>
<body>
<div class="container">
<div class="section">
<div id="cv"></div>
</div>
<h6 style="margin: 0; padding: 5;">* Link to repo: <a href="https://github.com/Immodal/maze-lightning">Immodal/maze-lightning</a></h6>
</div>
</body>
</html>