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