Ejemplo n.º 1
0
        public bool Contains(ArcType arcType)
        {
            bool result = StoredArcsList.Contains(arcType);

            // Double turret is two single turrets
            if (!result && arcType == ArcType.SingleTurret)
            {
                result = StoredArcsList.Contains(ArcType.DoubleTurret);
            }

            return(result);
        }
Ejemplo n.º 2
0
 public void Remove(ArcType arcType)
 {
     StoredArcsList.Remove(arcType);
 }
Ejemplo n.º 3
0
 public void Add(ArcType arcType)
 {
     StoredArcsList.Add(arcType);
 }