Update GUI slots

This commit is contained in:
Shaun Bennett 2015-12-14 02:56:07 -05:00
parent 98bcd44003
commit db9db558a0
1 changed files with 13 additions and 13 deletions

View File

@ -68,19 +68,19 @@ public class Menu extends ShopPageBase<CosmeticManager, CosmeticShop>
addItem(4, shards);
// Cosmetic Items
int[] slots = UtilUI.getIndicesFor(12, 2);
int particleSlot = slots[0];
int arrowSlot = slots[1];
int jumpSlot = slots[2];
int deathSlot = slots[3];
int gadgetSlot = slots[4];
int morphSlot = slots[5];
int mountSlot = slots[6];
int petSlot = slots[7];
int hatSlot = slots[8];
int costumeSlot = slots[9];
int musicSlot = slots[10];
int tauntSlot = slots[11];
// int[] slots = UtilUI.getIndicesFor(12, 2);
int particleSlot = 10;//slots[0];
int arrowSlot = 12;//slots[1];
int jumpSlot = 14;//slots[2];
int deathSlot = 16;//slots[3];
int gadgetSlot = 28;//slots[4];
int morphSlot = 30;//slots[5];
int mountSlot = 32;//slots[6];
int petSlot = 34;//slots[7];
int hatSlot = 46;//slots[8];
int costumeSlot = 48;//slots[9];
int musicSlot = 50;//slots[10];
int tauntSlot = 52;//slots[11];
EnumMap<GadgetType, Integer> ownedCount = new EnumMap<GadgetType, Integer>(GadgetType.class);
EnumMap<GadgetType, Integer> maxCount = new EnumMap<GadgetType, Integer>(GadgetType.class);