12 lines
159 B
C++
12 lines
159 B
C++
|
#include "log.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
void Log(const char* message)
|
||
|
{
|
||
|
std::cout << message << std::endl;
|
||
|
}
|
||
|
void InitLog()
|
||
|
{
|
||
|
Log("Initializing Log");
|
||
|
}
|