-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
38 lines (33 loc) · 1.18 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
<html>
<head>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.7.2/addons/p5.sound.js"></script>
<script src="script/sketch.js"></script>
<script src="script/building.js"></script>
<script src="script/villager.js"></script>
<script src="script/enemy.js"></script>
<script src="script/mine.js"></script>
<script src="script/townhall.js"></script>
<script src="script/digger.js"></script>
<script src="script/blacksmith.js"></script>
<script src="script/barracks.js"></script>
<script src="script/hospital.js"></script>
<script src="script/warrior.js"></script>
<script src="script/cemetery.js"></script>
<script src="script/priest.js"></script>
<script src="script/farmer.js"></script>
<script src="script/farm.js"></script>
<script src="script/home.js"></script>
<script src="script/day-night.js"></script>
<script src="script/stat-block.js"></script>
<!-- <script src="script/sounds.js"></script> -->
<style>
body {
margin: 0;
}
</style>
</head>
<body>
</body>
</html>