Exemplo n.º 1
0
        public string GetProvinceName(string faction)
        {
            List <string> provinceName  = NamesPool.ProvinceNames[faction];
            string        exclusiveName = NamesPool.GetExclusiveName(ref provinceName);

            NamesPool.ProvinceNames[faction] = provinceName;
            return(exclusiveName);
        }
Exemplo n.º 2
0
 public string GetSystemName()
 {
     if (NamesPool.SystemNames.Count == 0)
     {
         ++this.planetIteration;
         this.GetNewSystemNameList();
     }
     return(NamesPool.GetExclusiveName(ref NamesPool.SystemNames));
 }