Example #1
0
 public void DestroyAI(AIUnit ai)
 {
     if (listAIs.Contains(ai))
     {
         ai.Destroy();
         listAIs.Remove(ai);
     }
 }