21 lines
353 B
C#
21 lines
353 B
C#
using Godot;
|
|
|
|
namespace GameJamDungeon
|
|
{
|
|
[GlobalClass]
|
|
public partial class PlayerStatInfo : Resource, ICharacterStats
|
|
{
|
|
[Export]
|
|
public double MaximumHP { get; set; }
|
|
|
|
[Export]
|
|
public int MaximumVT { get; set; }
|
|
|
|
[Export]
|
|
public int BaseAttack { get; set; }
|
|
|
|
[Export]
|
|
public int BaseDefense { get; set; }
|
|
}
|
|
}
|