using System; using System.Collections.Generic; namespace Goap.Core { public interface INode { Guid Guid { get; } IConnectable Action { get; set; } List Effects { get; set; } List Conditions { get; set; } bool IsRootNode { get; } void GetActions(List actions); } }