10 #ifndef CONSOLE_FUNC_H
11 #define CONSOLE_FUNC_H
40 template <
typename A,
typename ... Args>
41 inline void IConsolePrint(
TextColour colour_code, fmt::format_string<A, Args...> format, A first_arg, Args&&... other_args)
45 IConsolePrint(colour_code, fmt::format(format, std::forward<A>(first_arg), std::forward<Args>(other_args)...));
49 void IConsoleCmdExec(
const std::string &command_string,
const uint recurse_count = 0);