Files
GameJamDungeon/Zennysoft.Game.Abstractions/Pickups/IHealthPack.cs

7 lines
115 B
C#

namespace Zennysoft.Game.Abstractions;
public interface IHealthPack
{
public double RestoreAmount { get; }
}