10 lines
224 B
C#
10 lines
224 B
C#
using Content.Server.AI.WorldState;
|
|
|
|
namespace Content.Server.AI.Utility.Considerations
|
|
{
|
|
public sealed class DummyCon : Consideration
|
|
{
|
|
protected override float GetScore(Blackboard context) => 1.0f;
|
|
}
|
|
}
|