Codechange: let IConsoleCmdExec accept std::string

This commit is contained in:
Rubidium
2023-06-28 22:40:03 +02:00
committed by rubidium42
parent fd380127f0
commit f333372dd1
4 changed files with 12 additions and 12 deletions

View File

@@ -47,7 +47,7 @@ static inline void IConsolePrint(TextColour colour_code, const T &format, A firs
}
/* Parser */
void IConsoleCmdExec(const char *cmdstr, const uint recurse_count = 0);
void IConsoleCmdExec(const std::string &command_string, const uint recurse_count = 0);
bool IsValidConsoleColour(TextColour c);