From be23be617142a4583e9aece1f880596a17100cf2 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 4 Feb 2024 15:56:38 +0100 Subject: a --- test/app.hpp | 1 + test/main.cpp | 1 + test/raycast.cpp | 11 +++++++++++ 3 files changed, 13 insertions(+) create mode 100644 test/raycast.cpp diff --git a/test/app.hpp b/test/app.hpp index 2ddd4bfc..fc0bc90c 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -38,6 +38,7 @@ struct test_app final : private FM_APPLICATION static void test_path_search_node_pool(); static void test_wall_atlas(); static void test_wall_atlas2(); + static void test_raycast(); static void zzz_test_misc(); }; } // namespace floormat diff --git a/test/main.cpp b/test/main.cpp index dfe37c2c..a6b10e9c 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -35,6 +35,7 @@ int test_app::exec() test_math(); test_hash(); test_scenery(); + test_raycast(); test_path_search_node_pool(); test_path_search(); test_dijkstra(); diff --git a/test/raycast.cpp b/test/raycast.cpp new file mode 100644 index 00000000..672dc407 --- /dev/null +++ b/test/raycast.cpp @@ -0,0 +1,11 @@ +#include "app.hpp" +#include "src/raycast.hpp" + +namespace floormat { + +void test_app::test_raycast() +{ + +} + +} // namespace floormat::test_app -- cgit v1.2.3