2022-01-10 01:20:44 +01:00
|
|
|
//=============================================================================//
|
|
|
|
//
|
|
|
|
// Purpose: Command line utilities
|
|
|
|
//
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
#include "tier0/commandline.h"
|
2022-04-09 16:16:40 +02:00
|
|
|
#include "tier1/cvar.h"
|
2022-01-10 01:20:44 +01:00
|
|
|
|
2022-04-16 00:30:46 +02:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Instance singleton and expose interface to rest of code
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
CCommandLine* CommandLine(void)
|
|
|
|
{
|
|
|
|
return g_pCmdLine;
|
|
|
|
}
|
2022-06-24 12:10:46 +02:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
CCommandLine* g_pCmdLine = nullptr;
|