summaryrefslogtreecommitdiffstats
path: root/source/PluginManager.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-07-30 22:48:59 +0200
committermadmaxoft <github@xoft.cz>2013-07-30 22:48:59 +0200
commite9f18f8b4fcf4ae7891b631765bcc49a4a183220 (patch)
tree8e44bb38c5602e8b36d595434c03bb00dc396287 /source/PluginManager.h
parentAdded the "Edit Sign" packet sent to the client placing a sign. (diff)
downloadcuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar
cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.gz
cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.bz2
cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.lz
cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.xz
cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.tar.zst
cuberite-e9f18f8b4fcf4ae7891b631765bcc49a4a183220.zip
Diffstat (limited to '')
-rw-r--r--source/PluginManager.h3
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;