diff options
Diffstat (limited to 'test/app.hpp')
-rw-r--r-- | test/app.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/app.hpp b/test/app.hpp index 17ca2b6e..46ea3fc0 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -13,12 +13,16 @@ #endif namespace floormat { + +struct chunk; + struct test_app final : private FM_APPLICATION { using Application = FM_APPLICATION; explicit test_app(const Arguments& arguments); ~test_app(); int exec() override; + static chunk make_test_chunk(); static void test_json(); static void test_tile_iter(); static void test_const_math(); @@ -26,5 +30,6 @@ struct test_app final : private FM_APPLICATION static void test_entity(); static void test_quadtree(); static void test_loader(); + static void test_bbox(); }; } // namespace floormat |