-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault.htm
45 lines (30 loc) · 1.32 KB
/
default.htm
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 lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>TypeScript HTML App</title>
<link rel="stylesheet" href="app.css" type="text/css" />
<script src="ACreateJS/createjs-2013.12.12.min.js"></script>
<script src="ACreateJS/app.js"></script>
<script src="ACreateJS/Game.js"></script>
<script src="ACreateJS/AssetsManager.js"></script>
<script src="ACreateJS/Constants.js"></script>
<script src="ACreateJS/Sprites.js"></script>
<script src="RVO2/Simulator.js"></script>
<script src="RVO2/KeyValuePair.js"></script>
<script src="RVO2/Obstacle.js"></script>
<script src="RVO2/Line.js"></script>
<script src="RVO2/Vector2.js"></script>
<script src="RVO2/Agent.js"></script>
<script src="RVO2/RVOMath.js"></script>
<script src="RVO2/KdTree.js"></script>
<script src="RVO2/AgentTreeNode.js"></script>
<script src="RVO2/ObstacleTreeNode.js"></script>
<script src="RVO2/FloatPair.js"></script>
</head>
<body>
<div id="loader"></div>
<header id="header" class="EaselJS"></header>
<canvas id="canvas" style="position:inherit ; border-style:solid ; border-color:lightgray ; background-color:white" width="1100" height="860"></canvas>
</body>
</html>