-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 867 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
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="user-scalable=0, initial-scale=1.0" />
<title>Mouse Seeking Cheese</title>
<link rel="stylesheet" href="res/main.css">
</head>
<body>
<main>
<canvas id="game"></canvas>
</main>
<!-- Ω500 lib -->
<script src="lib/Ω500.js"></script>
<!-- Game -->
<script src="src/game.js"></script>
<script src="src/entities/Player.js"></script>
<script src="src/entities/Cat.js"></script>
<script src="src/screens/MainScreen.js"></script>
<script src="src/screens/TitleScreen.js"></script>
<script>
var game = new MouseMaze(320, 640);
</script>
</body>
</html>