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