Files
tbd-station-14/Content.Server/AI/Utility/Actions/IAiUtility.cs
2022-05-13 17:59:03 +10:00

16 lines
354 B
C#

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