-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (35 loc) · 1.24 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
34
35
36
37
<!DOCTYPE html>
<!--
* Steampong version 0.0.1
*
* --Preliminar version of Steampong
*
* @author José David Cano
* @version 0.0.1
*
-->
<html>
<head>
<title>Steampong | K-Per Games</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="css/styles.css" type="text/css" />
</head>
<body>
<canvas width="960" height="720" id="game">
Your browser doesn't support HTML5.<br/>
Please, <a href="https://www.google.com/intl/es/chrome/browser/">upgrade your browser</a>
</canvas>
<script src="src/lib/Box2dWeb-2.1.a.3.js"></script>
<script src="src/lib/simple-inherit.js"></script>
<script src="src/lib/require.min.js"></script>
<script src="src/Game.js" type="text/javascript"></script>
<!--script src="src/game.min.js"></script-->
<script type="text/javascript">
window.addEventListener('load', function() {
version = '0.0.3';
var game = new Game(document.getElementById('game'), 'http://localhost/steampong');
game.start();
});
</script>
</body>
</html>