-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpool.htm
More file actions
45 lines (43 loc) · 1.59 KB
/
pool.htm
File metadata and controls
45 lines (43 loc) · 1.59 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<title>Classic Pool Game</title>
<link rel="stylesheet" type="text/css" href="game-layout.css"/>
<link rel="shortcut icon" type="image/png" href="pool.icon.png"/>
<script src="LAB.min.js"></script>
<script>
$LAB
.script('Keys.js').wait()
.script('Color.js').wait()
.script('Vector2.js').wait()
.script('ButtonState.js').wait()
.script('Keyboard.js').wait()
.script('Mouse.js').wait()
.script('Global.js').wait()
.script('Canvas2D.js').wait()
.script('Score.js').wait()
.script('Ball.js').wait()
.script('Stick.js').wait()
.script('Label.js').wait()
.script('Button.js').wait()
.script('Menu.js').wait()
.script('MainMenu.js').wait()
.script('Opponent.js').wait()
.script('AIPolicy.js').wait()
.script('AITrainer.js').wait()
.script('Player.js').wait()
.script('GamePolicy.js').wait()
.script('GameWorld.js').wait()
.script('Game.js').wait()
.script('Assets.js').wait(function () {
Game.start('gameArea','screen', 1500, 825);
});
</script>
</head>
<body style = "background-color:black">
<div id="gameArea">
<canvas id="screen" width="2000" height="1000"></canvas>
</div>
</body>
</html>