init
This commit is contained in:
17
public/tier1/commandline.h
Normal file
17
public/tier1/commandline.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "tier0/platform.h"
|
||||
|
||||
interface ICommandLine
|
||||
{
|
||||
public:
|
||||
static void CreateCommandLine( int argc, char **argv );
|
||||
|
||||
static bool CheckParam( char *psz );
|
||||
static char *ParamValue( const char* psz );
|
||||
|
||||
static void AddParam( char *psz );
|
||||
static void RemoveParam( char *psz );
|
||||
|
||||
static int ParamCount();
|
||||
static int FindParam( const char *psz );
|
||||
static const char *GetParam(int nIndex);
|
||||
};
|
||||
Reference in New Issue
Block a user