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

14 lines
265 B
C#

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