Files
wagic/projects/mtg/include/Logger.h
wagic.the.homebrew 1251ef0096 Erwan
- 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
2009-01-17 01:46:11 +00:00

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