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) { } }