Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com> Co-authored-by: Metal Gear Sloth <metalgearsloth@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
13 lines
318 B
C#
13 lines
318 B
C#
using Content.Server.AI.Utility.Curves;
|
|
using Content.Server.AI.WorldState;
|
|
|
|
namespace Content.Server.AI.Utility.Considerations
|
|
{
|
|
public class DummyCon : Consideration
|
|
{
|
|
public DummyCon(IResponseCurve curve) : base(curve) {}
|
|
|
|
public override float GetScore(Blackboard context) => 1.0f;
|
|
}
|
|
}
|