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