Files
funnygame/public/tier1/commandline.h
2025-06-04 00:18:32 +03:00

24 lines
460 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( 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);
};
#endif