DEADSOFTWARE

Add crafting
[cavedroid.git] / android / src / ru / deadsoftware / cavedroid / AndroidLauncher.java
index fcf083199e0e667bb839c4e45a2c7fdfc22330a0..e7aad50df8c3df8deab19206bf22d5fee456f3ef 100644 (file)
@@ -10,7 +10,6 @@ public class AndroidLauncher extends AndroidApplication {
     protected void onCreate(Bundle savedInstanceState) {
         super.onCreate(savedInstanceState);
         AndroidApplicationConfiguration config = new AndroidApplicationConfiguration();
-        config.hideStatusBar = true;
         config.useImmersiveMode = true;
         String gameFolder = "";
         try {
@@ -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);
     }