r5sdk/r5dev/tier0/commandline.cpp
2022-08-20 03:15:51 +02:00

20 lines
678 B
C++

//=============================================================================//
//
// Purpose: Command line utilities
//
//=============================================================================//
#include "core/stdafx.h"
#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;