From c8e7fcc5f2cac58785baf2556cffc5727a48e957 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sun, 17 Dec 2017 08:17:40 +0000 Subject: Display total S/T/E counts. --- src/common.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/common.hpp') diff --git a/src/common.hpp b/src/common.hpp index 5510f95..f269370 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -128,7 +128,10 @@ namespace world { bool test_rect(const cmodel_t *cmodel, const entity_t *ignore); trace_t trace(v2f_t start, v2f_t end, cflags_t cflags); - void debug_point(sf::Vector2f point); + struct { + size_t sectors = 0, tiles = 0; + size_t entities = 0; + } stats; }; class entity_t { -- cgit