Ejemplo n.º 1
0
 private void updateSpace(int index, StorageSpace space)
 {
     space.saveItem(getItem(), index);
     currentInventory.saveCharacterInventory(currentCharacter.Name);
 }
Ejemplo n.º 2
0
 private void removeFromSpace(int index, StorageSpace space)
 {
     space.removeItem(index);
     currentInventory.saveCharacterInventory(currentCharacter.Name);
     initInventoryDisplay();
 }
Ejemplo n.º 3
0
 private void removeFromSpace(int index, StorageSpace space)
 {
     space.removeItem(index);
     currentInventory.saveCharacterInventory(currentCharacter.Name);
     initInventoryDisplay();
 }
Ejemplo n.º 4
0
 private void updateSpace(int index, StorageSpace space)
 {
     space.saveItem(getItem(), index);
     currentInventory.saveCharacterInventory(currentCharacter.Name);
 }