-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
23 lines (23 loc) · 1013 Bytes
/
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
<html>
<head>
<meta charset="utf-8"/>
<link rel="icon" type="image/png" href="./misc/icon.png" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js"></script>
<script src="../GameEngine/ui.js" type="text/javascript"></script>
<script src="../GameEngine/tool.js" type="text/javascript"></script>
<script src="../GameEngine/job.js" type="text/javascript"></script>
<script src="../GameEngine/sound.js" type="text/javascript"></script>
<script src="../GameEngine/sprite.js" type="text/javascript"></script>
<script src="./world.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body bgcolor="#515151">
<div id="header">
<h1 id="title">HUNT</h1>
</div>
<div id="canvas">
<script src="./main.js" type="text/javascript"></script>
</div>
</body>
</html>