IState.cs (150B)
1 namespace Slimecing.StateMachine 2 { 3 public interface IState 4 { 5 IState CheckTransition(); 6 void Enter(); 7 void Exit(); 8 } 9 }