-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 763 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Variation</title>
<link href="/styles.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="game-container">
<canvas class="game-canvas" width="352" height="198"></canvas>
</div>
<script src="/js/Utils.js"></script>
<script src="/js/DirectionInput.js"></script>
<script src="/js/Overworld.js"></script>
<script src="/js/GameObject.js"></script>
<script src="/js/Person.js"></script>
<script src="/js/Sprite.js"></script>
<script src="/js/OverWorldMap.js"></script>
<script src="/js/OverworldEvent.js"></script>
<script src="/js/Init.js"></script>
</body>
</html>