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

14 lines
259 B
C#

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