7 lines
89 B
C++
7 lines
89 B
C++
#include <iostream>
|
|
|
|
void LogInfo(const char *msg)
|
|
{
|
|
std::cout<< msg << std::endl;
|
|
}
|