mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-29 16:37:59 +01:00
18 lines
409 B
C#
18 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;
|
||
|
}
|
||
|
}
|
||
|
}
|