using Robust.Shared.Configuration; namespace Content.Shared.CCVar; public sealed partial class CCVars { public static readonly CVarDef NPCMaxUpdates = CVarDef.Create("npc.max_updates", 128); public static readonly CVarDef NPCEnabled = CVarDef.Create("npc.enabled", true); /// /// Should NPCs pathfind when steering. For debug purposes. /// public static readonly CVarDef NPCPathfinding = CVarDef.Create("npc.pathfinding", true); }