goat3d

view src/log.h @ 56:ca549434dc95

fixed a crashing bug in anm_destroy_node introduced when I added the multiple animations per node
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 23 Jan 2014 02:50:54 +0200
parents cb6c1a945a11
children dad392c710df
line source
1 #ifndef LOG_H_
2 #define LOG_H_
4 namespace g3dimpl {
6 enum { LOG_ERROR, LOG_INFO };
8 void logmsg(int prio, const char *fmt, ...);
10 } // namespace g3dimpl
12 #endif // LOG_H_