-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<title>Breakout</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width", initial-scale=1.0, user-scalable="no"/>
<link rel="stylesheet" type="text/css" href="includes/styles.css">
</head>
<body onload="Game.init();">
<div id="container">
<canvas id="canvas">Canvas is not supported</canvas>
<div id="touchControl">
<span id="S">S</span>
<span id="L">L</span>
<span id="R">R</span>
<span id="P">P</span>
</div>
</div>
<audio id="audio" controls="controls"></audio>
<script src="includes/char.js" type="text/javascript"></script>
<script src="includes/constants.js" type="text/javascript"></script>
<script src="includes/control.js" type="text/javascript"></script>
<script src="includes/draw.js" type="text/javascript"></script>
<script src="includes/elements.js" type="text/javascript"></script>
<script src="includes/game.js" type="text/javascript"></script>
<script src="includes/global.js" type="text/javascript"></script>
<script src="includes/interlude.js" type="text/javascript"></script>
<script src="includes/player.js" type="text/javascript"></script>
<script src="includes/sound.js" type="text/javascript"></script>
</body>
</html>