9 lines
225 B
C#

namespace SharpUI.Source.Common.UI.Elements.SkillTrees
{
public interface ISkillProgressLine
{
void OnSkillAmountChanged(int amount);
int GetUnlockAtSkillAmount();
int GetTotalAmount();
}
}