Example #1
0
 public bool RemoveColor(Colors color)
 {
     if (BulletColors.Contains(color))
     {
         BulletColors.Remove(color);
         return(true);
     }
     else
     {
         return(false);
     }
 }
Example #2
0
 public void AddColor(Colors color)
 {
     BulletColors.Add(color);
 }