added phonies to make, added fps to debug
[physics.git] / src / debug.h
1 #ifndef DEBUG_H
2 #define DEBUG_H
3
4 // comment out when not debugging
5 #define DEBUGGING
6
7 // comment out to prevent FPS and UPS printing
8 #define FPSUPS
9
10 #include <iostream>
11 using std::cerr;
12 using std::cout;
13 using std::endl;
14
15 #endif // DEBUG_H