mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-07 00:16:36 -08:00
9 lines
302 B
C#
9 lines
302 B
C#
using CounterStrikeSharp.API.Modules.Cvars;
|
|
|
|
namespace WithFakeConvars;
|
|
|
|
public static class ConVars
|
|
{
|
|
// This convar is registered from the plugin instance but can be used anywhere.
|
|
public static FakeConVar<int> ExampleStaticCvar = new("example_static", "An example static cvar");
|
|
} |