2020-07-08 09:37:35 +10:00
|
|
|
namespace Content.Server.AI.WorldState.States.Utility
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used by the utility AI to calc the adjusted scores
|
|
|
|
|
/// </summary>
|
2022-02-16 00:23:23 -07:00
|
|
|
public sealed class ConsiderationState : StoredStateData<int>
|
2020-07-08 09:37:35 +10:00
|
|
|
{
|
|
|
|
|
public override string Name => "Consideration";
|
|
|
|
|
}
|
2022-02-16 00:23:23 -07:00
|
|
|
}
|