mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
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;
|
|
}
|
|
}
|