struct IConsoleCmdArgs { };
IConsole.h
Interface to the arguments of the console command.
virtual ~IConsoleCmdArgs();
virtual const char* GetArg(int nIndex) const = 0;
Gets argument by index, nIndex must be in 0 <= nIndex < GetArgCount()
virtual int GetArgCount() const = 0;
Gets number of arguments supplied to the command (including the command itself)
virtual const char* GetCommandLine() const = 0;
Gets complete command line