Example #1
0
            //Есть ли зона в списке?
            public bool ZoneExist(uint ZoneID)
            {
                List <Ore> temp = new List <Ore>();

                return(OresDict.TryGetValue(ZoneID, out temp));
            }
Example #2
0
 //Получить список руды в конкретной зоне
 public bool GetList(uint ZoneID, out List <Ore> list)
 {
     return(OresDict.TryGetValue(ZoneID, out list));
 }