-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.28 KB
/
Copy pathindex.html
File metadata and controls
35 lines (35 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="./bower_components/three.js/three.min.js"></script>
<script src="./bower_components/three.js-controls/src/OrbitControls.js"></script>
<script src='./bower_components/threex.md2character/threex.md2character.js'></script>
<script src='./bower_components/threex.md2character/threex.md2characterratmahatta.js'></script>
<script src='./bower_components/threex.md2character/threex.md2charactercontrols.js'></script>
<script src='./bower_components/threex.oimo/vendor/oimo.js'></script>
<script src='./bower_components/threex.oimo/threex.oimo.js'></script>
<script src='./bower_components/threex.grass/threex.grass.js'></script>
<script>
Object.extend = function(destination, source) {
for (var property in source) {
if (source.hasOwnProperty(property)) {
destination[property] = source[property];
}
}
return destination;
};
</script>
<script src="./app/Unit.js"></script>
<script src="./app/Enemy.js"></script>
<script src="./app/Game.js"></script>
</head>
<body>
<div id="wrap"></div>
<script>
Game.init();
Game.debug();
</script>
</body>
</html>