-
Notifications
You must be signed in to change notification settings - Fork 1
/
flockingAndAvoid.html
44 lines (30 loc) · 1.06 KB
/
flockingAndAvoid.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/site.css">
<!-- LIBS-->
<script src="scripts/jq.min.js"></script>
<script src="scripts/phaser.js"></script>
<!-- UTILS-->
<script src="scripts/utils/movementUtils.js"></script>
<!-- BASE OBJS -->
<script src="scripts/objs/entity.js"></script>
<script src="scripts/objs/boid.js"></script>
<script src="scripts/objs/immovable.js"></script>
<!-- BEHAVIORS -->
<script src="scripts/behaviors/behavior.js"></script>
<script src="scripts/behaviors/BehaviorFlockAndAvoid.js"></script>
<!-- GAME OBJS-->
<script src="scripts/objs/ship.js"></script>
<script src="scripts/objs/wormhole.js"></script>
</head>
<body>
<h1>FLOCKING AND AVOIDANCE</h1>
<!-- SITE -->
<script src="scripts/pages/flockingAndAvoid.js"></script>
</body>
</html>