-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 959 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Physics Balls</title>
</head>
<body>
<canvas id="myCanvas" width="350" height="622"></canvas>
<script src="./script/sprites.js"></script>
<script src="./script//sound.js"></script>
<script src="./script/color.js"></script>
<script src="./script/GameState.js"></script>
<script src="./script/canvas.js"></script>
<script src="./script/Mouse.js"></script>
<script src="./script/selectBall.js"></script>
<script src="./script/pause.js"></script>
<script src="./script/Gameplayscreen.js"></script>
<script src="./script/ball.js"></script>
<script src="./script/polygon.js"></script>
<script src="./script//GameOver.js"></script>
<script src="./script/startscreen.js"></script>
<script src="./script/Game.js"></script>
</body>
</html>