diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-05 21:32:57 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-06 01:35:11 +0100 |
commit | 0a6612286bfa8c2503c757da2b39da37aa05deaf (patch) | |
tree | 3606dbe2ee59026f0fcdba7377034dfcab13da0d /test/app.hpp | |
parent | 2679d49a53a3f9825ce855f6ed25b3b045ec5aa1 (diff) |
src/chunk: plug in lqt for collision detection
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 |