Added mines.

This commit is contained in:
2026-01-06 20:35:52 -05:00
parent 804c03b1d8
commit f44d9ae48c
7 changed files with 132 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
namespace AlienAttack.MonoGame.Things.Enemies.Mines;
public class RedMine(int x, int y) : Mine(x, y)
{
protected override string CoverColor => "Red";
}