First push to github

This commit is contained in:
Richard Davey
2013-04-12 17:19:56 +01:00
parent 5c705c4b31
commit a1a1ab3f30
368 changed files with 21609 additions and 2 deletions
+26
View File
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1 maximum-scale=1 user-scalable=0" />
<title>Phaser Test Runner : JS State Test 1</title>
<link rel="stylesheet" href="../../phaser.css" type="text/css" />
<script src="../../phaser.js"></script>
<script src="MainMenu.js"></script>
<script src="FakeGame.js"></script>
</head>
<body>
<div id="game"></div>
<script type="text/javascript">
var myGame = new Game(this, 'game', 840, 400);
myGame.switchState(MainMenu);
</script>
</body>
</html>