-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (30 loc) · 1.52 KB
/
index.html
File metadata and controls
35 lines (30 loc) · 1.52 KB
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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title id="counter">Game Template</title>
<!--<link rel="stylesheet" href="stylesheet.css">-->
<!--<script src="bin/pixi.js" type="text/javascript"></script>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/3.0.7/pixi.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="bin/GameScreen.js" type="text/javascript"></script>
<script src="bin/MainScreen.js" type="text/javascript"></script>
<script src="bin/Button.js" type="text/javascript"></script>
<script src="bin/Game.js" type="text/javascript"></script>
<script src="bin/Person.js" type="text/javascript"></script>
<script src="bin/Player.js" type="text/javascript"></script>
<script src="bin/NPCPerson.js" type="text/javascript"></script>
<script src="bin/HitDetection.js" type="text/javascript"></script>
<script src="bin/GameOver.js" type="text/javascript"></script>
</head>
<body style="margin:0px">
<canvas id="game" style="padding:0px; margin:0px; position:absolute; max-height:100%; max-width:100%; width:auto; height:auto; overflow:hidden;" width="100px"> Your browser doesn't support this game at all, how strange!</canvas>
</body>
<script src="bin/init.js" type="text/javascript"></script>
<script>
'use strict'
var app = app || {};
window.addEventListener('load', init);
console.log("Game Template Version 0.2");
</script>
</html>