Renaming to LiME

This commit is contained in:
underscorediscovery
2013-06-25 03:38:35 -02:30
parent 4068f30c99
commit ccb154fd2b
43 changed files with 132 additions and 132 deletions

View File

@@ -1,15 +1,15 @@
import ::APP_MAIN::;
import nmegl.NMEGL;
import lime.LiME;
class ApplicationMain {
public static var _main_ : ::APP_MAIN::;
public static var _nmegl : NMEGL;
public static var _lime : LiME;
public static function main () {
//Create the runtime
_nmegl = new NMEGL();
_lime = new LiME();
//Create the game class, give it the runtime
_main_ = new ::APP_MAIN::();
@@ -20,7 +20,7 @@ class ApplicationMain {
};
//Start up
_nmegl.init( _main_, config );
_lime.init( _main_, config );
}
}

View File

@@ -1,7 +1,7 @@
package nme;
import nmegl.utils.Assets;
import lime.utils.Assets;
class AssetData {