how to set up dictionary unity code example
Example 1: unity list
GameObject Obj;
List<GameObject> Objects = new List<GameObject>();
Objects.Add(Obj);
Example 2: adding to a dictionary unity
Dictionary<string , int> someDictionary
someDictionary.Add("Five" , 5);