-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.59 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!--
Dungeon of Souls
Copyright (C) 2025 Yrahcaz7
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Dungeon of Souls</title>
<link rel="stylesheet" type="text/css" href="main.css">
<script src="js/data.js"></script>
<script src="js/characters.js"></script>
<script src="js/functions.js"></script>
<script src="js/enums.js"></script>
<script src="js/events.js"></script>
<script src="js/map.js"></script>
<script src="js/images.js"></script>
<script src="js/graphics.js"></script>
<script src="js/artifacts.js"></script>
<script src="js/cards.js"></script>
<script src="js/enemies.js"></script>
<script src="js/actions.js"></script>
<script src="js/game.js"></script>
<script src="js/save.js"></script>
<script src="js/technical.js"></script>
</head>
<body>
<audio id="music" hidden></audio>
<canvas id="canvas" width="800" height="400">
Canvas is not loaded. Either your browser does not support HTML5, or a major bug in loading the game occured.
</canvas>
</body>
</html>