diff --git a/CMakeLists.txt b/CMakeLists.txt index b6c3ce0..4cc2cb7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.26) -project(pathfinding) +project(navigation) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/include/pathfinding/pathfinding.hpp b/include/navigation/navigation.hpp similarity index 99% rename from include/pathfinding/pathfinding.hpp rename to include/navigation/navigation.hpp index 32dde8a..c4ffcec 100644 --- a/include/pathfinding/pathfinding.hpp +++ b/include/navigation/navigation.hpp @@ -21,7 +21,7 @@ namespace std { }; } -namespace pathfinding { +namespace navigation { std::unordered_set mapped_regions; std::unordered_map collision_data;