forked from davidpatrickstevenyung/COMP-WORLD-PROJECT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.74 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang = "en">
<link rel="shortcut icon" href="favicon.ico">
<head>
<meta charset="utf-8">
<title>Soul Stained</title>
<!-- <script type="text/javascript" src="http://24.16.255.56:8888/socket.io/socket.io.js"></script>-->
<script type="text/javascript" src="js/howler.js"></script>
<script type="text/javascript" src ="js/AssetManager.js"></script>
<script type="text/javascript" src ="js/Entities/Animation.js"></script>
<script type="text/javascript" src ="js/UserInterface.js"></script>
<script type="text/javascript" src ="js/Entities/Entity.js"></script>
<script type="text/javascript" src ="js/Entities/Projectile.js"></script>
<script type="text/javascript" src ="js/Entities/Enemies.js"></script>
<script type="text/javascript" src ="js/Entities/Collision.js"></script>
<script type="text/javascript" src ="js/Entities/Block.js"></script>
<script type="text/javascript" src="js/Entities/Portal.js"></script>
<script type="text/javascript" src="js/Entities/Chest.js"></script>
<script type="text/javascript" src ="js/Entities/Weapon.js"></script>
<script type="text/javascript" src ="js/Entities/Hero.js"></script>
<script type="text/javascript" src ="js/Worlds/TileMap.js"></script>
<script type="text/javascript" src ="js/Worlds/World.js"></script>
<script type="text/javascript" src ="js/GameEngine.js"></script>
<script type="text/javascript" src ="js/Main.js"></script>
</head>
<style>
#container {
position: relative;
}
</style>
<body>
<div id="container" style="text-align:center">
<canvas id="gameWorld" tabindex="1" width="720" height="720"
style="border: 2px solid lightgreen; background: black"></canvas>
</div>
</body>
</html>