-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 721 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 721 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
<html>
<head>
<title>Classic Pool Game</title>
</head>
<body>
<canvas id="screen" width="1500" height="825"></canvas>
<script src="Vector2.js"></script>
<script src="input/ButtonState.js"></script>
<script src="input/Mouse.js"></script>
<script src="Canvas.js"></script>
<script src="Color.js"></script>
<script src="Constants.js"></script>
<script src="Assets.js"></script>
<script src="Ball.js"></script>
<script src="Stick.js"></script>
<script src="GameWorld.js"></script>
<script src="Game.js"></script>
<script>
loadAssets(PoolGame.start);
</script>
</body>
</html>