6 lines
168 B
C#
6 lines
168 B
C#
namespace AlienAttack.MonoGame.Things.Enemies.Turrets;
|
|
|
|
public class TealTurret(int x, int y) : Turret(x, y)
|
|
{
|
|
protected override string TurretColor => "Teal";
|
|
} |