-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 1 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
<!doctype html>
<head>
<meta charset = "utf-8">
<title>BEAN</title>
<link rel = "stylesheet" type = "text/css" href = "assets/style.css"/>
<link rel = "icon" href = "assets/icon.png" sizes = "256x256" type = "image/png"/>
<!-- VENDOR SCRIPTS -->
<script src = "vendor/pixi.min.js"></script>
<script src = "vendor/howler.min.js"></script>
<script src = "vendor/jquery-3.1.0.min.js"></script>
</head>
<body>
<!-- CLIENT SCRIPTS -->
<script src = "client/player.js"></script>
<script src = "client/menu.js"></script>
<script src = "client/arena.js"></script>
<script src = "client/win.js"></script>
<script src = "client/input-gamepads.js"></script>
<script src = "client/input-keys.js"></script>
<script src = "client/input-mouse.js"></script>
<script src = "client/fullscreen.js"></script>
<script src = "client/utils.js"></script>
<script src = "client/main.js"></script>
<script src = "client/index.js"></script>
<section id = "display">
<!-- PIXI CANVAS ENDS UP ABOVE THIS -->
</section>
</body>