HKI Core
AIAction.cs
Go to the documentation of this file.
1 using UnityEngine;
2 
3 namespace HKI.Core.AI.StateMachine
4 {
10  public abstract class AIAction : ScriptableObject
11  {
12  // Interface function
13  public abstract void Act(AIStateController controller);
14  }
15 }
This is obsolete code it'll be removed later. For now it's still included for exemplary purposes for ...
This is obsolete code it'll be removed later. For now it's still included for exemplary purposes for ...
Definition: AIAction.cs:10