-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (18 loc) · 707 Bytes
/
index.html
File metadata and controls
20 lines (18 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<title>Basic HTML5 Game Framework</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="external/Stats.js"></script>
<script src="external/Box2dWeb-2.1.a.3.js"></script>
<script src="external/jquery.js"></script>
<script src="js/AssetManager.js"></script>
<script src="js/Utilies.js"></script>
<script src="js/Physics.js"></script>
<script src="js/Game.js"></script>
<script src="js/Graphics.js"></script>
<script src="js/main.js"></script>
</head>
<body></body>
</html>