diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-11 03:53:12 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-11 08:49:52 +0100 |
commit | 0de0eb1fe18949a328b9e76a2dbf6319692cc3cb (patch) | |
tree | 069235056b38d320e4693bf1d1b89fbda17c058b /test/app.hpp | |
parent | c40f3dc1505439acd34b5fff12ea0a570920f98d (diff) |
wip loader
Diffstat (limited to 'test/app.hpp')
-rw-r--r-- | test/app.hpp | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/test/app.hpp b/test/app.hpp index d7e66b17..41f01507 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -21,27 +21,29 @@ struct test_app final : private FM_APPLICATION int exec() override; + static void test_anim_atlas(); + static void test_astar(); + static void test_astar_pool(); + static void test_bitmask(); static void test_coords(); - static void test_tile_iter(); - static void test_magnum_math(); - static void test_math(); - static void test_iptr(); + static void test_dijkstra(); static void test_entity(); - static void test_serializer1(); - static void test_bitmask(); static void test_hash(); + static void test_iptr(); static void test_json(); - static void test_wall_atlas(); - static void test_dijkstra(); - static void test_loader(); static void test_json2(); static void test_json3(); static void test_load_all(); - static void test_astar(); + static void test_loader(); + static void test_magnum_math(); + static void test_math(); + static void test_raycast(); static void test_scenery(); - static void test_astar_pool(); + static void test_serializer1(); + static void test_tile_iter(); + static void test_wall_atlas(); static void test_wall_atlas2(); - static void test_raycast(); + static void test_zzz_misc(); }; } // namespace floormat |