I was thinking about creating a List like so:
public List<Items> lItems= new List<Items>();
public List<int> lItemAmount= new List<int>();
Then when I want to add a item I just do:
private void AddToItems()
{
lItems.Add(Items);
lItemAmount.Add(Ranom.Range(1,10);
}
Is this a proper way or is there a better way of doing this?