public GoapFunctionPair(
     GoapHeuristicFunction Heuristic,
     GoapActionFunction Action
     )
 {
     this.Heuristic = Heuristic;
     this.Action    = Action;
 }
Exemplo n.º 2
0
    void Update()
    {
        // G is Nullable
        GoapActionFunction Action = GetGoapEventWithHighestHScore();

        if (Action != null)
        {
            Action();
        }
    }