-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 789 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 789 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Project LASER</title>
<script type="text/javascript" src="lib/phaser.min.js"></script>
<script type="text/javascript" src="lib/dungeon-generator.min.js"></script>
<!-- <script type="text/javascript" src="lib/asyncPath.js"></script> -->
<script type="text/javascript" src="js/boot.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<style>
body {
background-color: #000000;
cursor: default;
}
canvas {
cursor: crosshair;
}
</style>
</head>
<body>
<div id="gameDiv"></div>
<p><a href="https://github.com/Akselmo/ProjectLASER/" target="_blank">Github & Credits</a></p>
</body>
</html>