Hey gang. I'm trying to add game settings to my game, Physbox, but they don't appear in the main menu. Here is an example of how I define a ConVar in my code.
[ConVar( "pb_deathmatch_kills_to_win",
ConVarFlags.GameSetting ),
Group( "Deathmatch" ),
Title( "Kills to Win" )]
public static int DeathmatchKillsToWin { get; set; } = 5;