diff options
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r-- | src/commandhandler.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/commandhandler.h b/src/commandhandler.h index 0e8d9dd7..10a4376f 100644 --- a/src/commandhandler.h +++ b/src/commandhandler.h @@ -108,6 +108,16 @@ class CommandHandler */ void handleParty(const std::string &args); + /** + * Handle a op command. + */ + void handleOp(const std::string &args); + + /** + * Handle a kick command. + */ + void handleKick(const std::string &args); + }; extern CommandHandler *commandHandler; |