| 47 | } |
| 48 | |
| 49 | void ConsolePrint(char const* format, ...) |
| 50 | { |
| 51 | va_list args; |
| 52 | va_start(args, format); |
| 53 | vConsolePrint(format, args); |
| 54 | va_end(args); |
| 55 | } |
| 56 | |
| 57 | void ConsolePrintLn(char const* format, ...) |
| 58 | { |
nothing calls this directly
no test coverage detected