HKI Core
AIDecision.cs
Go to the documentation of this file.
1 using UnityEngine;
2 
3 namespace HKI.Core.AI.StateMachine
4 {
10  public abstract class AIDecision : ScriptableObject
11  {
12  // Interface function
13  public abstract bool Decide(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: AIDecision.cs:10