DEADSOFTWARE

Add crafting
[cavedroid.git] / android / src / ru / deadsoftware / cavedroid / AndroidLauncher.java
index 3019a9e767da7f04feae1aa5062aa0a3a2b2744b..e7aad50df8c3df8deab19206bf22d5fee456f3ef 100644 (file)
@@ -4,7 +4,6 @@ import android.content.pm.PackageManager;
 import android.os.Bundle;
 import com.badlogic.gdx.backends.android.AndroidApplication;
 import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
-import com.badlogic.gdx.backends.android.BuildConfig;
 
 public class AndroidLauncher extends AndroidApplication {
     @Override
@@ -19,7 +18,7 @@ public class AndroidLauncher extends AndroidApplication {
             e.printStackTrace();
             exit();
         }
-        CaveGame caveGame = new CaveGame(gameFolder, true);
+        CaveGame caveGame = new CaveGame(gameFolder, true, null);
         caveGame.setDebug(BuildConfig.DEBUG);
         initialize(caveGame, config);
     }