Initial commit

This commit is contained in:
Fabrice Ecaille
2013-09-25 18:26:19 +02:00
commit 883157e3a6
22 changed files with 3271 additions and 0 deletions

40
index.html Normal file
View File

@@ -0,0 +1,40 @@
<html>
<head>
<title>Space invaders - Story</title>
<script src="lib/jquery-1.7.1.min.js" type="text/javascript" ></script>
<script src="lib//jquery-ui-1.8.23.custom.min.js" type="text/javascript" ></script>
<script src="lib/gamequery-0.7.1.js" type="text/javascript" ></script>
<script src="js/tools.js" type="text/javascript" ></script>
<script src="js/scoreboard.js" type="text/javascript" ></script>
<script src="js/countdown.js" type="text/javasccript" ></script>
<script src="js/lettering.js" type="text/javascript" ></script>
<link href="css/scoreboard.css" type="text/css" rel="stylesheet"/>
<link href="css/countdown.css" type="text/css" rel="stylesheet"/>
<script src="js/spaceinvaders-ui.js" type="text/javascript" ></script>
<script src="js/spaceinvaders-core.js" type="text/javascript" ></script>
<script src="js/spaceinvaders-models.js" type="text/javascript" ></script>
<link href="css/spaceinvaders.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div id="playgroundContainer">
<div id="playground">
<div id="welcomeScreen">
<div style="position: absolute; top: 120px; width: 700px; color: white;">
<div id="loadingBar"></div>
</div>
</div>
</div>
</div>
<script language="text/javascript">
$(document).ready(function () {
//Game.init();
});
</script>
</body>
</html>