added start app.js

This commit is contained in:
Jeena Paradies 2012-07-22 00:51:41 +02:00
parent 22ae392ace
commit 413dd242ba
4 changed files with 58 additions and 7 deletions

View file

@ -1,4 +1,4 @@
var requires = [
define([
"Game/Client/View/ViewController",
"Game/Core/Physics/Engine",
"Game/Core/Player",
@ -7,9 +7,9 @@ var requires = [
"Game/Core/Loader/Level",
"Lib/Vendor/Box2D",
"Lib/Utilities/RequestAnimFrame"
];
],
define(requires, function(ViewController, PhysicsEngine, Player, KeyboardController, Settings, Level, Box2D, requestAnimFrame) {
function(ViewController, PhysicsEngine, Player, KeyboardController, Settings, Level, Box2D, requestAnimFrame) {
function GameController (clientGame) {
this.clientGame = clientGame;