reworked ups/fps/paused logic
[physics.git] / src / debug.h
index 5fc114b..6085003 100644 (file)
 #define DEBUG_H
 
 #include <iostream>
-using std::cerr;
 using std::cout;
+using std::cerr;
 using std::endl;
 
+void DPF(int level, const char* pstr);
+
+namespace debug
+{
+    void init();
+    void clean();
+}
+
+void DASSERT(bool fBreak);
 
 // comment out when not debugging
 #define DEBUGGING
 
-// comment out to prevent FPS and UPS printing
-#define FPSUPS
-
 
 #endif // DEBUG_H