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; } } }