This commit is contained in:
2025-06-04 00:18:32 +03:00
parent 804711f2c4
commit 5d85ebd85f
17 changed files with 108 additions and 7 deletions

View File

@@ -1,3 +1,7 @@
#ifndef TIER1_COMMANDLINE_H
#define TIER1_COMMANDLINE_H
#include "tier0/platform.h"
interface ICommandLine
@@ -14,4 +18,6 @@ public:
static int ParamCount();
static int FindParam( const char *psz );
static const char *GetParam(int nIndex);
};
};
#endif