예제 #1
0
 public void Kill()
 {
     IsAlive = false;
     InventoryList.Clear();
     InventoryItems = string.Empty;
 }
예제 #2
0
 public void RemoveInventory(string inventory)
 {
     RestoreLists();
     InventoryList.Remove(inventory);
     SaveLists();
 }
예제 #3
0
 public void AddInventory(string name)
 {
     RestoreLists();
     InventoryList.Add(name);
     SaveLists();
 }
예제 #4
0
 public void AddInventory(string inventory)
 {
     RestoreLists();
     InventoryList.Add(inventory);
     SaveLists();
 }