goat3dgfx
view src/logger.h @ 21:7c593721547f
integrated support for the multiple animation system of libanim
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 27 Dec 2013 11:59:32 +0200 |
parents | 18879c956eb1 |
children |
line source
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
4 namespace goatgfx {
6 void info_log(const char *fmt, ...);
7 void warning_log(const char *fmt, ...);
8 void error_log(const char *fmt, ...);
9 void fatal_log(const char *fmt, ...);
10 void debug_log(const char *fmt, ...);
12 } // namespace goatgfx
14 #endif // LOGGER_H_