Beispiel #1
0
 void AddRoad(GElem e, string j, int scale)
 {
     if (!e.incList.ContainsKey(j))
     {
         e.incList.Add(j, scale);
     }
 }
Beispiel #2
0
        void RemoveRoad(GElem e, string j)
        {
            Dictionary <string, int> incList = e.incList;

            incList.Remove(j);
        }