r5sdk/r5dev/tier0/commandline.cpp

20 lines
676 B
C++
Raw Normal View History

2022-01-10 01:20:44 +01:00
//=============================================================================//
//
// Purpose: Command line utilities
//
//=============================================================================//
#include "tier0_pch.h"
2022-01-10 01:20:44 +01:00
#include "tier0/commandline.h"
#include "tier1/cvar.h"
2022-01-10 01:20:44 +01: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;