using Robust.Shared.GameObjects;
namespace Content.Server.AI.Utility.Actions
{
public interface IAiUtility
{
///
/// NPC this action is attached to.
///
IEntity Owner { get; set; }
///
/// Highest possible score for this action.
///
float Bonus { get; }
}
}