diff options
Diffstat (limited to 'source/PluginManager.h')
-rw-r--r-- | source/PluginManager.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/PluginManager.h b/source/PluginManager.h index 3832ee455..150132f9f 100644 --- a/source/PluginManager.h +++ b/source/PluginManager.h @@ -197,6 +197,9 @@ public: // tolua_export /// Executes the command split into a_Split, as if it was given on the console. Returns true if executed. Output is sent to the a_Output callback bool ExecuteConsoleCommand(const AStringVector & a_Split, cCommandOutputCallback & a_Output); + /// Appends all commands beginning with a_Text (case-insensitive) into a_Results + void TabCompleteCommand(const AString & a_Text, AStringVector & a_Results); + private: friend class cRoot; |