struct IConsoleArgumentAutoComplete { };
IConsole.h
Interface to the arguments of the console command.
virtual ~IConsoleArgumentAutoComplete();
virtual int GetCount() const = 0;
Gets number of matches for the argument to auto complete.
virtual const char* GetValue(int nIndex) const = 0;
Gets argument value by index, nIndex must be in 0 <= nIndex < GetCount()