22 lines
442 B
C#
22 lines
442 B
C#
using Chickensoft.Collections;
|
|
|
|
namespace GameJamDungeon
|
|
{
|
|
public interface ICharacterStats
|
|
{
|
|
public IAutoProp<double> CurrentHP { get; }
|
|
|
|
public IAutoProp<double> MaximumHP { get; }
|
|
|
|
public IAutoProp<int> CurrentAttack { get; }
|
|
|
|
public IAutoProp<int> CurrentDefense { get; }
|
|
|
|
public IAutoProp<int> MaxAttack { get; }
|
|
|
|
public IAutoProp<int> MaxDefense { get; }
|
|
|
|
public IAutoProp<double> Luck { get; }
|
|
}
|
|
}
|