Logger.h 279 B

1234567891011121314
  1. #ifndef INCLUDE_LOGGER_H
  2. #define INCLUDE_LOGGER_H
  3. namespace WalrusRPG
  4. {
  5. namespace Logger
  6. {
  7. void log(const char *fmt, ...);
  8. void debug(const char *fmt, ...);
  9. void warn(const char *fmt, ...);
  10. void error(const char *fmt, ...);
  11. }
  12. }
  13. #endif