17 lines
512 B
C#
17 lines
512 B
C#
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared.CCVar;
|
|
|
|
public sealed partial class CCVars
|
|
{
|
|
public static readonly CVarDef<int> NPCMaxUpdates =
|
|
CVarDef.Create("npc.max_updates", 128);
|
|
|
|
public static readonly CVarDef<bool> NPCEnabled = CVarDef.Create("npc.enabled", true);
|
|
|
|
/// <summary>
|
|
/// Should NPCs pathfind when steering. For debug purposes.
|
|
/// </summary>
|
|
public static readonly CVarDef<bool> NPCPathfinding = CVarDef.Create("npc.pathfinding", true);
|
|
}
|