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