-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
45 lines (25 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.sound.min.js" type="text/javascript"></script>
<script src="https://cdn.rawgit.com/molleindustria/p5.play/42cd19c3/lib/p5.play.js" type="text/javascript"></script>
<script src="images/world.js"></script>
<script src="libs/p5.tiledmap.js"></script>
<script src="libs/p5.tiledplay.js"></script>
<script src="game.js"></script>
<script src="pickup.js"></script>
<style>
body,html {
margin: 0px;
padding: 0px;
display: flex;
justify-content: center;
align-items:center;
height:100%;
}
</style>
</head>
<body>
</body>
</html>