forked from JoshuaKGoldberg/Old-Deleted-FullScreenMario
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mario.html
33 lines (29 loc) · 998 Bytes
/
mario.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>Full Screen Mario</title>
<link href="mario.css" rel="stylesheet">
<link href="Fonts/stylesheet.css" rel="stylesheet">
<script src="data.js"></script>
<script src="editor.js"></script>
<script src="gamepad.js"></script>
<script src="generator.js"></script>
<script src="library.js"></script>
<script src="load.js"></script>
<script src="maps.js"></script>
<script src="mario.js"></script>
<script src="quadrants.js"></script>
<script src="sounds.js"></script>
<script src="sprites.js"></script>
<script src="things.js"></script>
<script src="toned.js"></script>
<script src="triggers.js"></script>
<script src="upkeep.js"></script>
<script src="utility.js"></script>
<!-- Refactored libraries/frameworks under /src -->
<script src="src/TimeHandlr/TimeHandlr.js"></script>
</head>
<body onload="FullScreenMario()">
</body>
</html>