-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (36 loc) · 1.64 KB
/
index.html
File metadata and controls
42 lines (36 loc) · 1.64 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
41
42
<!DOCTYPE html>
<html>
<head>
<title id="title"></title>
<!-- Meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta name="description" content="The First Dungeon, a pixel world with lots of adventures. Play now for FREE!">
<meta name="keywords" content="2D, rpg, game, puzzle, pixel, adventure">
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
<!-- Style -->
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Varela+Round" />
<link rel="stylesheet" href="assets/ui/style.css">
<link rel="stylesheet" href="assets/main.css">
<!-- Script -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://pixijs.download/v6.2.1/pixi.min.js"></script>
<script src="src/constants.min.js"></script>
<script src="src/utils.min.js"></script>
<script src="src/map.min.js"></script>
<script src="src/entity/entity.min.js"></script>
<script src="src/entity/monster.min.js"></script>
<script src="src/entity/player.min.js"></script>
<script src="src/interface.min.js"></script>
<script src="src/game.min.js"></script>
<script src="src/main.min.js"></script>
</head>
<body id="root">
<!-- Noscript message -->
<noscript>You cannot play the game with JavaScript disabled. Please enable it to be able to play.</noscript>
<!-- User interface injected here -->
<main></main>
</body>
<!-- Disable ajax cache -->
<script>$.ajaxSetup({cache: false });</script>
</html>