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