Files
funnygame/public/tier1/commandline.h
2025-07-13 15:47:42 +03:00

24 lines
498 B
C

#ifndef TIER1_COMMANDLINE_H
#define TIER1_COMMANDLINE_H
#include "tier0/platform.h"
interface ICommandLine
{
public:
static void CreateCommandLine( int argc, char **argv );
static bool CheckParam( const char *psz );
static char *ParamValue( const char* psz, const char *szDefaultValue = 0 );
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);
};
#endif