9 lines
144 B
C#
9 lines
144 B
C#
namespace AI.Base {
|
|
public interface IState {
|
|
void OnEnter();
|
|
void Tick();
|
|
void OnExit();
|
|
IState CheckTransitions();
|
|
}
|
|
}
|