diff --git a/MountainGoap/Agent.cs b/MountainGoap/Agent.cs index 3551c0a..cb54c2c 100644 --- a/MountainGoap/Agent.cs +++ b/MountainGoap/Agent.cs @@ -19,7 +19,12 @@ public class Agent { /// /// Chains of actions currently being performed by the agent. /// - internal List> CurrentActionSequences = new(); + private List> CurrentActionSequences = new(); + + public List> GetCurrentActionSequences() + { + return CurrentActionSequences; + } /// /// Initializes a new instance of the class.