public long GetNumOfSpecificItem(TheBrain.ItemTypes type) { return(itemCart[type]); }
public ItemContainer(TheBrain.ItemTypes type, int num) { itemType = type; numOfItems = num; }
/// <summary> /// Adds a single instance of the item type given to the shopping cart /// </summary> /// <param name="type"></param> public void addItemToCart(TheBrain.ItemTypes type) { itemCart[type]++; size++; }