Files
tbd-station-14/Content.Server/AI/Utility/Actions/IAiUtility.cs
2021-12-05 18:09:01 +01:00

18 lines
388 B
C#

using Robust.Shared.GameObjects;
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; }
}
}