mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
17 lines
409 B
C#
17 lines
409 B
C#
namespace Fie.Object
|
|
{
|
|
[FieAbilityID(FieConstValues.FieAbility.NONE)]
|
|
public abstract class FieStateMachineAbilityBase : FieStateMachineGameCharacterBase, FieStateMachineAbilityInterface
|
|
{
|
|
public float defaultCoolDown;
|
|
|
|
public abstract FieAbilityActivationType getActivationType();
|
|
|
|
public abstract string getSignature();
|
|
|
|
public virtual float getCooldown()
|
|
{
|
|
return defaultCoolDown;
|
|
}
|
|
}
|
|
}
|