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