| 1234567891011121314 |
- #ifndef INCLUDE_LOGGER_H
- #define INCLUDE_LOGGER_H
- namespace WalrusRPG
- {
- namespace Logger
- {
- void log(const char *fmt, ...);
- void debug(const char *fmt, ...);
- void warn(const char *fmt, ...);
- void error(const char *fmt, ...);
- }
- }
- #endif
|