FiE-Game/Assets/Scripts/Fie/Ponies/FieStateMachinePoniesAbilitySlot2.cs

25 lines
367 B
C#
Raw Normal View History

2018-11-20 20:10:49 +01:00
using Fie.Object;
using System;
namespace Fie.Ponies
{
public class FieStateMachinePoniesAbilitySlot2 : FieStateMachineGameCharacterBase
{
private Type _nextState;
public override void updateState<T>(ref T gameCharacter)
{
}
public override bool isEnd()
{
return true;
}
public override Type getNextState()
{
return _nextState;
}
}
}