From eb01eca652392e57b2a6e7d28fcb2b98ab16072d Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 23 Mar 2024 10:46:09 +0100 Subject: editor/tests: move pathfinding -> walking --- editor/tests-private.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'editor/tests-private.hpp') diff --git a/editor/tests-private.hpp b/editor/tests-private.hpp index e7882a8b..b31e9d2c 100644 --- a/editor/tests-private.hpp +++ b/editor/tests-private.hpp @@ -32,7 +32,7 @@ protected: enum class Test : uint32_t { //todo add a speedometer overlay test - none, path, raycast, region, pathfinding, COUNT, + none, path, raycast, region, walk, COUNT, }; struct tests_data final : tests_data_ @@ -45,7 +45,7 @@ struct tests_data final : tests_data_ static Pointer make_test_path(); static Pointer make_test_raycast(); static Pointer make_test_region(); - static Pointer make_test_pathfinding(); + static Pointer make_test_walk(); Pointer current_test; Test current_index = Test::none; @@ -58,11 +58,11 @@ struct tests_data final : tests_data_ }; static constexpr test_tuple fields[] = { - { "None"_s, Test::none, make_test_none, }, - { "Path"_s, Test::path, make_test_path, }, - { "Raycasting"_s, Test::raycast, make_test_raycast }, - { "Region extraction"_s, Test::region, make_test_region }, - { "Pathfinding"_s, Test::pathfinding, make_test_pathfinding }, + { "None"_s, Test::none, make_test_none, }, + { "Path"_s, Test::path, make_test_path, }, + { "Raycasting"_s, Test::raycast, make_test_raycast }, + { "Region extraction"_s, Test::region, make_test_region }, + { "Walking"_s, Test::walk, make_test_walk }, }; }; -- cgit v1.2.3