コード例 #1
0
 public void SetCore(string tag, bool addCore)
 {
     if (addCore && !Cores.Contains(tag))
     {
         Cores.Add(tag);
         IsModProvince = true;
     }
     else if (!addCore && Cores.Contains(tag))
     {
         Cores.Remove(tag);
         IsModProvince = true;
     }
 }