forked from jimppan/osrs-gimp-tracker-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
21 lines (18 loc) · 891 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>
<link rel="stylesheet" type="text/css" href="index.css" />
<!--- <script src="https://pixijs.download/release/pixi.js"></script> --->
<script src="https://pixijs.download/release/pixi.min.js"></script>
<script src='./node_modules/@pixi/layers/dist/pixi-layers.umd.js'></script>
<script src='./node_modules/socket.io/client-dist/socket.io.js'></script>
<script src='./node_modules/fontfaceobserver/fontfaceobserver.standalone.js'></script>
</head>
<body>
<canvas id='osrscanvas'></canvas>
<script type='text/javascript' src='config.js'></script>
<script type='text/javascript' src='src/global.js'></script>
<script type='module' src='src/app.js'></script>
</body>
</html>