diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2017-11-07 12:41:23 +0100 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2017-11-07 12:41:23 +0100 |
commit | e28a62894f368cccc64932fe83c91f32d7cb7288 (patch) | |
tree | 63588a2791d1fa474327807b9185f864d1e2974e /src/main.cpp | |
parent | 7471347839f30a85e985891b945a721967fcfb86 (diff) |
Hide debug draws by default, start working on selecting.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 352981c..01c1df4 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,10 @@ #include "common.hpp" #include <ctime> +bool debug_draw_cmodels = false; +bool debug_draw_paths = false; +bool debug_draw_tile_coords = false; + uint64_t nano_clock(void) { struct timespec ts; |