mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 23:37:59 +01:00
12 lines
179 B
C#
12 lines
179 B
C#
|
namespace Fie.Object
|
||
|
{
|
||
|
public interface FieStateMachineAbilityInterface
|
||
|
{
|
||
|
FieAbilityActivationType getActivationType();
|
||
|
|
||
|
string getSignature();
|
||
|
|
||
|
float getCooldown();
|
||
|
}
|
||
|
}
|