From 0de0eb1fe18949a328b9e76a2dbf6319692cc3cb Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 11 Feb 2024 03:53:12 +0100 Subject: wip loader --- test/anim-atlas.cpp | 16 ++++++++++++++++ test/app.cpp | 1 + test/app.hpp | 26 ++++++++++++++------------ 3 files changed, 31 insertions(+), 12 deletions(-) create mode 100644 test/anim-atlas.cpp (limited to 'test') diff --git a/test/anim-atlas.cpp b/test/anim-atlas.cpp new file mode 100644 index 00000000..9f84a6ff --- /dev/null +++ b/test/anim-atlas.cpp @@ -0,0 +1,16 @@ +#include "app.hpp" + +namespace { + + + +} // namespace + +namespace floormat { + +void test_app::test_anim_atlas() +{ + +} + +} // namespace floormat diff --git a/test/app.cpp b/test/app.cpp index 06049609..99326c29 100644 --- a/test/app.cpp +++ b/test/app.cpp @@ -60,6 +60,7 @@ int test_app::exec() FM_TEST(test_bitmask), FM_TEST(test_loader), FM_TEST(test_serializer1), + FM_TEST(test_anim_atlas), FM_TEST(test_scenery), FM_TEST(test_astar_pool), FM_TEST(test_astar), 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 -- cgit v1.2.3