- It is now possible to have avatars associated to each Deck - Added SFX - Added Music files - Possibility to choose your opponent - Opponents' difficulty is measured according to their number of victories against a given deck
20 lines
219 B
C++
20 lines
219 B
C++
#ifndef _LOGGER_H
|
|
#define _LOGGER_H_
|
|
|
|
|
|
|
|
#ifdef DOLOG
|
|
#define LOG(x) Logger::Log(x);
|
|
#else
|
|
#define LOG(x)
|
|
#endif
|
|
|
|
#define LOG_FILE "Res/debug.txt"
|
|
|
|
class Logger{
|
|
public:
|
|
static void Log(const char * text);
|
|
};
|
|
|
|
#endif
|