summaryrefslogtreecommitdiff
path: root/game/main.js
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@entelect.co.za>2014-07-17 14:19:32 +0200
committerJustin Worthe <justin.worthe@entelect.co.za>2014-07-17 14:19:32 +0200
commit95cecb4933b7b991308c91abcc99a5281c479765 (patch)
tree9b796f4f60d4f1817a3ee7b6ad25fcc4e50fdfa4 /game/main.js
parent6e5bdbe7f8a2a0de71c498a69d9c2ceabb89504c (diff)
Added reading levels from a file
Diffstat (limited to 'game/main.js')
-rw-r--r--game/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/main.js b/game/main.js
index 0f5208f..e2812da 100644
--- a/game/main.js
+++ b/game/main.js
@@ -2,7 +2,7 @@
//global variables
window.onload = function () {
- var game = new Phaser.Game(800, 600, Phaser.AUTO, 'interactive-pacbot');
+ var game = new Phaser.Game(1100, 950, Phaser.AUTO, 'interactive-pacbot');
// Game States
game.state.add('boot', require('./states/boot'));