-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (36 loc) · 1.1 KB
/
index.html
File metadata and controls
40 lines (36 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Pet Algorithmic Agent</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
display: block;
}
</style>
<!-- Load p5.js library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/addons/p5.sound.min.js"></script>
</head>
<body>
<script src="playArea.js"></script>
<script src="border.js"></script>
<script src="backgrounds.js"></script>
<script src="pet.js"></script>
<script src="interactHandler.js"></script>
<script src="currency.js"></script>
<script src="house.js"></script>
<script src="shop.js"></script>
<script src="inventory.js"></script>
<script src="feed.js"></script>
<script src="gameStorage.js"></script>
<script src="tutorial.js"></script>
<script src="sketch.js"></script>
</body>
</html>