-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
28 lines (28 loc) · 762 Bytes
/
Copy pathmain.html
File metadata and controls
28 lines (28 loc) · 762 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>
<head>
<script src="https://pixijs.download/release/pixi.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@timohausmann/quadtree-js/quadtree.min.js"></script>
<script src="coloring.js"></script>
<script src="ground.js"></script>
<script src="entity.js"></script>
<script src="mouse.js"></script>
<script src="textDisplay.js"></script>
<script src="menu.js"></script>
<script src="main.js"></script>
<style>
html, body, canvas {
margin: 0;
overflow: hidden;
scroll-behavior: none;}
</style>
</head>
<body>
<div id="mainText" style="
position: absolute;
left: 0px;
top: 0px;
color: rgb(221, 200, 161);
"></div>
</body>
</html>