-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexSimpleAgg.html
More file actions
41 lines (28 loc) · 995 Bytes
/
indexSimpleAgg.html
File metadata and controls
41 lines (28 loc) · 995 Bytes
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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<head >
<script src="https://cdn.jsdelivr.net/npm/phaser@3.22.0/dist/phaser-arcade-physics.min.js"></script>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
</head>
<body style="overflow: hidden;">
<canvas id="game" width="1200" height="1000"></canvas>
<button style="z-index: 4;position:absolute;" onclick='stop_index()'>stop</button>
<script src="learning.js"></script>
<script src="Utils.js"></script>
<script src="Pacman.js"></script>
<script src="Food.js"></script>
<script src="binaryheap.js"></script>
<script src="graph.js"></script>
<script src="astar.js"></script>
<script src="layparser.js"></script>
<script id="index" src="indexSimpleAgg.js">
</script>
<script>
function stop_index(){
ingame=!ingame
}
</script>
</body>
</html>