-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
17 lines (16 loc) · 889 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<title>Maze_Game</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.sound.min.js"></script>
<script type="text/javascript" src="maze.js"></script>
<script type="text/javascript" src="cells.js"></script>
<script type="text/javascript" src="draw.js"></script>
<script type="text/javascript" src="autoPlay.js"></script>
<script type="text/javascript" src="playGame.js"></script>
<button onclick="autoPlay()" style = "position: fixed; bottom: 0; right: 0; width: 300px; border: 3px solid #73AD21;">RevealPath</button>
</head>
<body>
</body>
</html>