projects
/
physics.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
permission hook working correctly, good bye temp file
[physics.git]
/
src
/
debug.h
1
#ifndef DEBUG_H
2
#define DEBUG_H
3
4
#include <iostream>
5
using std::cerr;
6
using std::cout;
7
using std::endl;
8
9
10
// comment out when not debugging
11
#define DEBUGGING
12
13
// comment out to prevent FPS and UPS printing
14
#define FPSUPS
15
16
17
#endif // DEBUG_H