-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (50 loc) · 1.76 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<title>Clong</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="BohoEngine/animframepolyfill.js"></script>
<script src="BohoEngine/audioplayer.js"></script>
<script src="BohoEngine/game.js"></script>
<script src="BohoEngine/state.js"></script>
<script src="BohoEngine/statefactory.js"></script>
<script src="BohoEngine/statemachine.js"></script>
<script src="BohoEngine/eventhandler.js"></script>
<script src="BohoEngine/localstoragehandler.js"></script>
<script src="BohoEngine/inputhandler.js"></script>
<script src="BohoEngine/imagehandler.js"></script>
<script src="BohoEngine/audiohandler.js"></script>
<script src="BohoEngine/renderer.js"></script>
<script src="BohoEngine/htmlactuator.js"></script>
<script src="BohoEngine/engine.js"></script>
<script src="js/globals.js"></script>
<script src="js/ponginputhandler.js"></script>
<script src="js/initstate.js"></script>
<script src="js/collision.js"></script>
<script src="js/entity.js"></script>
<script src="js/paddle.js"></script>
<script src="js/aipaddle.js"></script>
<script src="js/ball.js"></script>
<script src="js/wall.js"></script>
<script src="js/gamestate.js"></script>
<script src="js/menustate.js"></script>
<script src="js/pongstatefactory.js"></script>
<script src="js/ponggame.js"></script>
<script src="js/main.js"></script>
<script src="js/application.js"></script>
</head>
<body>
<div id="page-container">
<div id="page">
<canvas id="canvas"></canvas>
<div id="explanation">
<h3>Instructions</h3>
<div>
Use up/down arrow keys to control your paddle on the left. Score by sending the ball past the other paddle's side.
</div>
</div>
</div>
</div>
</body>
</html>