feat(npc): ebreak support through external inst matching

This commit is contained in:
xinyangli 2024-04-11 11:44:54 +08:00
parent 55230247b2
commit e99236f711
Signed by: xin
SSH key fingerprint: SHA256:qZ/tzd8lYRtUFSrfBDBMcUqV4GHKxqeqRA3huItgvbk
8 changed files with 97 additions and 25 deletions

View file

@ -64,6 +64,13 @@ public:
*/
void registerCommand(const std::string &s, CommandFunction f);
/**
* @brief This function removes a list of registered commands.
*
* @param sv The vector of command names to be removed.
*/
void removeCommands(const std::vector<std::string> sv);
/**
* @brief This function returns a list with the currently available commands.
*