From c4e442c6a63cf9e5579711b2b19a2ffdbb93dfc2 Mon Sep 17 00:00:00 2001 From: Ulysse Cura Date: Fri, 6 Sep 2024 17:37:03 +0200 Subject: [PATCH] =?UTF-8?q?Changement=20du=20chemin=20d'acc=C3=A8s=20pour?= =?UTF-8?q?=20la=20lib=20nlohmann/json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MapManager.hpp | 2 +- TileMap.cpp | 2 +- {nlohmann => externLibs/nlohmann}/json.hpp | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {nlohmann => externLibs/nlohmann}/json.hpp (100%) diff --git a/MapManager.hpp b/MapManager.hpp index fcf625a..089f94a 100644 --- a/MapManager.hpp +++ b/MapManager.hpp @@ -16,7 +16,7 @@ #include // unique_ptr #include // string #include // unordered_map -#include "nlohmann/json.hpp" // json:: +#include "externLibs/nlohmann/json.hpp" // json:: using std::string, std::unordered_map, std::unique_ptr; diff --git a/TileMap.cpp b/TileMap.cpp index 376e6f6..cb3a3d5 100644 --- a/TileMap.cpp +++ b/TileMap.cpp @@ -14,7 +14,7 @@ #include "Camera.hpp" #include "Game.hpp" #include "MapManager.hpp" -#include "nlohmann/json.hpp" +#include "externLibs/nlohmann/json.hpp" #include "TextureManager.hpp" #include "TileMap.hpp" #include "Vector2D.hpp" diff --git a/nlohmann/json.hpp b/externLibs/nlohmann/json.hpp similarity index 100% rename from nlohmann/json.hpp rename to externLibs/nlohmann/json.hpp