-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<title>Game of Pong on Darlingjs javascript game engine</title>
<!-- build:css styles/game.css -->
<link rel="stylesheet" type="text/css" media="screen" href="css/game.css">
<!-- /build -->
<link rel="shortcut icon" href="images/logo-oldschool.ico">
<meta name="description" content="Darlingjs : Entity, Component, System based javascript game engine. With dependency injections and modular architecture. Inspired by Ash, AngularJS and CraftyJS." />
<link rel="image_src" href="https://lh3.googleusercontent.com/-YZQ1zxthtT8/UfUi-b1UQtI/AAAAAAAAfpQ/NLrs7v0y4do/s0/2013-07-28_15-56-08.png" />
<meta property="og:image" content="https://lh5.googleusercontent.com/-80qp7uh3EZM/UfUXEVNq6TI/AAAAAAAAfoo/twveW1uDI2A/s0/2013-07-28_15-05-19.png" />
<meta property="engine:author" content="http://about.me/hyzhak" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
</head>
<body>
<div id="gameStage" class="game">
<div class="ui-elements">
<div class="scores score-left">Player1:<span id="playerScore1"></span></div>
<div class="scores score-right">Player2:<span id="playerScore2"></span></div>
</div>
</div>
<!-- build:js js/game.js -->
<script src="bower_components/darlingjs/darling.js"></script>
<script src="bower_components/darlingjs-geometry/flatland.js"></script>
<script src="js/dom.js"></script>
<script src="js/control.js"></script>
<script src="js/physics.js"></script>
<script src="js/gameplay.js"></script>
<script src="js/game.js"></script>
<!-- /build -->
</body>
</html>