Advertisement
Guest User

Untitled

a guest
May 8th, 2021
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. template <typename... Args>
  2. void ConsoleDebug(const char *format, const Args & ... args) {
  3.     IConsolePrintF(CC_DEBUG, "%s", fmt::format(format, args...).c_str());
  4. }
  5.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement