Add project files.
This commit is contained in:
14
AlientAttack.MonoGame/Things/Items/Energy.cs
Normal file
14
AlientAttack.MonoGame/Things/Items/Energy.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace AlienAttack.MonoGame.Things.Items;
|
||||
|
||||
internal class Energy : Item
|
||||
{
|
||||
public Energy(int x, int y) : base(x, y)
|
||||
{
|
||||
TextureName = @$"Sprites\Powerup_Energy";
|
||||
}
|
||||
|
||||
protected override void ApplyEffect(Player player)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user