- shaders for both lightmapped objects with or without albedo maps
[laserbrain_demo] / src / logger.h
diff --git a/src/logger.h b/src/logger.h
new file mode 100644 (file)
index 0000000..978d634
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef LOGGER_H_
+#define LOGGER_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void info_log(const char *fmt, ...);
+void warning_log(const char *fmt, ...);
+void error_log(const char *fmt, ...);
+void fatal_log(const char *fmt, ...);
+void debug_log(const char *fmt, ...);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // LOGGER_H_