-
Notifications
You must be signed in to change notification settings - Fork 234
/
index.html
38 lines (30 loc) · 954 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
32
33
34
35
36
37
38
<!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>Ω500 - flappy bird</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link rel="stylesheet" href="res/main.css">
</head>
<body>
<section>
<canvas id="board"></canvas>
</section>
<!-- Ω500 lib -->
<script src="build/Ω500.js"></script>
<!-- Game -->
<script src="src/game.js"></script>
<script src="src/entities/Bird.js"></script>
<script src="src/entities/Pipe.js"></script>
<script src="src/screens/MainScreen.js"></script>
<script src="src/screens/TitleScreen.js"></script>
<script>
var game = new OmegaGame(288, 512);
</script>
<hr />
<div id="debug" style="text-align: left">
</div>
</body>
</html>