Added basic turret logic.

This commit is contained in:
2026-01-06 22:22:03 -05:00
parent f44d9ae48c
commit fcb4f1cf05
7 changed files with 153 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
namespace AlienAttack.MonoGame.Things.Enemies.Turrets;
public class TealTurret(int x, int y) : Turret(x, y)
{
protected override string TurretColor => "Teal";
}