11 lines
251 B
C#
11 lines
251 B
C#
namespace AlienAttack.MonoGame.Things.Items;
|
|
|
|
public class Shields : Item
|
|
{
|
|
protected override PickupKind Kind => PickupKind.Shield;
|
|
|
|
public Shields(int x, int y) : base(x, y)
|
|
{
|
|
TextureName = @$"Sprites\Powerup_Shields";
|
|
}
|
|
} |