mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-23 06:17:58 +01:00
27 lines
386 B
C#
27 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;
|
||
|
}
|
||
|
}
|
||
|
}
|