summaryrefslogtreecommitdiff
path: root/src/commandhandler.h
diff options
context:
space:
mode:
authorDavid Athay <ko2fan@gmail.com>2008-08-13 15:28:07 +0000
committerDavid Athay <ko2fan@gmail.com>2008-08-13 15:28:07 +0000
commitb9d9ae443874efd4968a6efcf5ce050f213c497b (patch)
tree453d80d3e1d251efb60968c36023413cb4faf452 /src/commandhandler.h
parent47247ac4e2f0860a34106f4b69049d91003ced29 (diff)
downloadmana-client-b9d9ae443874efd4968a6efcf5ce050f213c497b.tar.gz
mana-client-b9d9ae443874efd4968a6efcf5ce050f213c497b.tar.bz2
mana-client-b9d9ae443874efd4968a6efcf5ce050f213c497b.tar.xz
mana-client-b9d9ae443874efd4968a6efcf5ce050f213c497b.zip
Added permission levels to guilds, and operator permissions to channels.
Diffstat (limited to 'src/commandhandler.h')
-rw-r--r--src/commandhandler.h10
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;