Logger.h 403 B

12345678910111213141516
  1. #ifndef INCLUDE_LOGGER_H
  2. #define INCLUDE_LOGGER_H
  3. namespace WalrusRPG
  4. {
  5. // Logging function to show content on screen (with IMGUI branch), console or
  6. // eventually in a file (for nspire?)
  7. namespace Logger
  8. {
  9. void log(const char *fmt, ...);
  10. void debug(const char *fmt, ...);
  11. void warn(const char *fmt, ...);
  12. void error(const char *fmt, ...);
  13. }
  14. }
  15. #endif