mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
24 lines
367 B
C#
24 lines
367 B
C#
using Fie.Object;
|
|
using System;
|
|
|
|
namespace Fie.Ponies
|
|
{
|
|
public class FieStateMachinePoniesAbilitySlot1 : FieStateMachineGameCharacterBase
|
|
{
|
|
private Type _nextState;
|
|
|
|
public override void updateState<T>(ref T gameCharacter)
|
|
{
|
|
}
|
|
|
|
public override bool isEnd()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override Type getNextState()
|
|
{
|
|
return _nextState;
|
|
}
|
|
}
|
|
}
|