/// <summary>
 /// Creates a new Mock Inventory Owner
 /// </summary>
 /// <param name="inventoryCount">The number of inventories this inventory owner has</param>
 public MockInventoryOwner(int inventoryCount)
 {
     inventories = new MockInventory[inventoryCount];
     for (int i = 0; i < inventories.Length; i++)
     {
         inventories[i] = new MockInventory();
     }
 }
 /// <summary>
 /// Creates a new Mock Inventory Owner
 /// </summary>
 /// <param name="inventoryCount">The number of inventories this inventory owner has</param>
 public MockInventoryOwner(int inventoryCount)
 {
     inventories = new MockInventory[inventoryCount];
     for (int i = 0; i < inventories.Length; i++)
     {
         inventories[i] = new MockInventory();
     }
 }