#ifndef GAME_LOG_H
#define GAME_LOG_H
#include <cstdio>
class Log {
public:
Log(const char *path);
~Log();
void log(const char *fmt, ...);
private:
FILE *fp;
};
extern Log DefaultLog;
#endif //GAME_LOG_H
Powered by TurnKey Linux.