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