using Fie.Object; using System; using System.Collections.Generic; namespace Fie.Ponies { public class FieStateMachinePoniesJump : FieStateMachineGameCharacterBase { private bool _isEnd; private Type _nextState; public override void updateState(ref T gameCharacter) { _isEnd = true; } public override bool isEnd() { return _isEnd; } public override Type getNextState() { return _nextState; } public override List getAllowedStateList() { return new List(); } } }