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