14 lines
268 B
C#
14 lines
268 B
C#
namespace AlienAttack.MonoGame.Things.Items;
|
|
|
|
internal class Rockets : Item
|
|
{
|
|
public Rockets(int x, int y) : base(x, y)
|
|
{
|
|
TextureName = @$"Sprites\Powerup_Rockets";
|
|
}
|
|
|
|
protected override void ApplyEffect(Player player)
|
|
{
|
|
|
|
}
|
|
} |