conworlds

view src/logger.h @ 18:e4257df067a1

oh yeah, now the tracking is solid. Wasn't rendering the correct part of the texture before.
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 26 Aug 2014 12:59:15 +0300
parents
children
line source
1 #ifndef LOGGER_H_
2 #define LOGGER_H_
4 void info_log(const char *fmt, ...);
5 void warning_log(const char *fmt, ...);
6 void error_log(const char *fmt, ...);
7 void fatal_log(const char *fmt, ...);
8 void debug_log(const char *fmt, ...);
10 #endif // LOGGER_H_