- Prevent TestSuite from crashing, by not showing big cards during the test suite - Updated font size in game, to be readable - WARNING!!! One test (brass man) not working anymore !!! High priority
19 lines
222 B
C++
19 lines
222 B
C++
#ifndef _LOGGER_H
|
|
#define _LOGGER_H_
|
|
|
|
|
|
#ifdef DOLOG
|
|
#define LOG(x) Logger::Log(x);
|
|
#else
|
|
#define LOG(x)
|
|
#endif
|
|
|
|
#define LOG_FILE RESPATH"/debug.txt"
|
|
|
|
class Logger{
|
|
public:
|
|
static void Log(const char * text);
|
|
};
|
|
|
|
#endif
|