-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (41 loc) · 1.12 KB
/
Copy pathindex.html
File metadata and controls
45 lines (41 loc) · 1.12 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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="/img/green.png">
<title>Title</title>
<style>
body {
margin: 0;
overflow: hidden;
}
#view {
position: fixed;
left: 0;
top: 0;
}
#deck {
position: fixed;
left: 0;
bottom: 0;
z-index: 999;
}
</style>
</head>
<body style="background: #000;">
<script src="./js/EntityType.js"></script>
<script src="./js/Ressources.js"></script>
<script src="./js/Map.js"></script>
<script src="./js/TextElement.js"></script>
<script src="./js/HomeMenu.js"></script>
<script src="./js/Vector.js"></script>
<script src="./js/Panel.js"></script>
<script src="./js/Entity.js"></script>
<script src="./js/Villager.js"></script>
<script src="./js/Building.js"></script>
<script src="./js/Tree.js"></script>
<script src="./js/Controls.js"></script>
<script src="./js/Engine.js"></script>
<script src="./js/game.js"></script>
</body>
</html>