TowerDefenseGame/Assets/Scripts/Runtime/AI/Base/IState.cs
2025-06-28 14:49:54 -07:00

9 lines
144 B
C#

namespace AI.Base {
public interface IState {
void OnEnter();
void Tick();
void OnExit();
IState CheckTransitions();
}
}