mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
This reduced output code size with 40KiB, improved compile times and appeared to improve runtime performance as well.
19 lines
653 B
C++
19 lines
653 B
C++
//=============================================================================//
|
|
//
|
|
// Purpose: Command line utilities
|
|
//
|
|
//=============================================================================//
|
|
|
|
#include "tier0/commandline.h"
|
|
#include "tier1/cvar.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Instance singleton and expose interface to rest of code
|
|
//-----------------------------------------------------------------------------
|
|
CCommandLine* CommandLine(void)
|
|
{
|
|
return g_pCmdLine;
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
CCommandLine* g_pCmdLine = nullptr; |