using Goap.Agent.Core; namespace Goap.Core { public interface IGoal : IConnectable, IHasConfig { public int Index { get; set; } public float GetCost(IActionReceiver agent, IComponentReference references); } }