Exemplo n.º 1
0
 public void purchaseRandomBot() {
   randomBotPurchased = true;
   getSharedPreferences("BOOT_PREF", MODE_PRIVATE)
       .edit()
       .putBoolean(RANDOM_BOT_KEY, true)
       .commit();
   if (game != null) {
     game.purchaseRandomBot();
   }
 }