Add project files.
This commit is contained in:
14
AlientAttack.MonoGame/Things/Items/Rockets.cs
Normal file
14
AlientAttack.MonoGame/Things/Items/Rockets.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user