Finished porting the "plugins" command to the new menu system

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40314
This commit is contained in:
David Anderson
2007-01-17 18:22:00 +00:00
parent 35d0c555fa
commit 3597a8b1fe
5 changed files with 321 additions and 53 deletions
+11
View File
@@ -71,6 +71,17 @@ namespace SourceMod
* @return String containing all arguments.
*/
virtual const char *GetArguments() =0;
/**
* @brief Draws a generic command/description pair.
* NOTE: The pair is currently four spaces indented and 16-N spaces of separation,
* N being the length of the command name. This is subject to change in case we
* account for Valve's font choices.
*
* @param option String containing the command option.
* @param description String containing the command description.
*/
virtual void DrawGenericOption(const char *cmd, const char *text) =0;
};
};