-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·27 lines (27 loc) · 914 Bytes
/
Copy pathindex.html
File metadata and controls
executable file
·27 lines (27 loc) · 914 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="phaser.js"></script>
<script src="utils.js"></script>
<script src="controllerScene.js"></script>
<script src="worldScene.js"></script>
<script src="uiScene.js"></script>
<script src="lootAnim.js"></script>
<script src="inventoryButton.js"></script>
<script src="crop.js"></script>
<script src="crops/avocado.js"></script>
<script src="crops/grapes.js"></script>
<script src="crops/lemon.js"></script>
<script src="crops/melon.js"></script>
<script src="crops/orange.js"></script>
<script src="crops/potato.js"></script>
<script src="crops/rose.js"></script>
<script src="crops/strawberry.js"></script>
<script src="crops/tomato.js"></script>
<script src="crops/wheat.js"></script>
<script src="game.js"></script>
</head>
<body>
<div id='game'></div>
</body>
</html>