namespace AlienAttack.MonoGame.Things.Enemies.Mines; public class BlueMine(int x, int y) : Mine(x, y) { protected override string CoverColor => "Blue"; protected override float ExplodeRadius => 100f; protected override int MaxHealth => 10; }