Files
alien-attack/AlientAttack.MonoGame/Things/Items/Shields.cs
2025-12-16 08:51:34 -05:00

14 lines
268 B
C#

namespace AlienAttack.MonoGame.Things.Items;
internal class Shields : Item
{
public Shields(int x, int y) : base(x, y)
{
TextureName = @$"Sprites\Powerup_Shields";
}
protected override void ApplyEffect(Player player)
{
}
}