Update: CC - Entity Loaded - Impact Test (3w66vzyd6a.js) 9 bytes modified

beta.r3js.org
-=yb4f310 2018-03-02 10:23:17 +01:00
parent 72a4ee9a70
commit 9e8ed3df97
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ ig.module(
// code for this module
// Create your own game class
MyGame = ig.Game.extend(
ig.globals.Snake = ig.Game.extend(
{
font: new ig.Font( 'media/04b03.font.png' ),
@ -35,7 +35,7 @@ ig.module(
// Start your game
// 60fps, 320x240 pixels, scaled up by a factor of 2
ig.main('#n5iza1dcbp', MyGame, 60, 320, 240, 2 );
ig.main('#n5iza1dcbp', Snake, 60, 320, 240, 2 );
});