-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (21 loc) · 906 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script type="text/javascript" src="node_modules/paper/dist/paper-full.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<script type="text/javascript" src="js/player.js"></script>
<script type="text/javascript" src="js/worm.js"></script>
<script type="text/javascript" src="js/food.js"></script>
<script type="text/javascript" src="js/ball.js"></script>
<script type="text/javascript" src="js/field.js"></script>
<script type="text/javascript" src="js/collision_detector.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Worms</title>
</head>
<body>
<canvas id="gameCanvas" resize="true"></canvas>
</body>
</html>