* quick inspect * Update Content.Client/Commands/QuickInspectCommand.cs Co-authored-by: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com> * documentation!!! --------- Co-authored-by: Kyle Tyo <36606155+VerinSenpai@users.noreply.github.com>
14 lines
416 B
C#
14 lines
416 B
C#
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared.CCVar;
|
|
|
|
public sealed partial class CCVars
|
|
{
|
|
/// <summary>
|
|
/// Component to be inspected using the "Quick Inspect Component" keybind.
|
|
/// Set by the "quickinspect" command.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> DebugQuickInspect =
|
|
CVarDef.Create("debug.quick_inspect", "", CVar.CLIENTONLY | CVar.ARCHIVE);
|
|
}
|