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