16 lines
407 B
C#
16 lines
407 B
C#
namespace Gameplay.Skill.Charge
|
|
{
|
|
public interface ISkillCharge
|
|
{
|
|
|
|
public float chargeProgress { get; }
|
|
public cfg.SkillCfg.EChargeType chargeType { get; }
|
|
public void TriggerUse();
|
|
public void TriggerTimeChange(float dt);
|
|
public int nowStoreCount { get; }
|
|
public void TriggerNormalAttack();
|
|
public void TriggerBeAttack();
|
|
|
|
}
|
|
}
|