Restructing on the project

This commit is contained in:
2026-01-06 03:10:27 +02:00
parent e64b8ed194
commit b457ecce47
9 changed files with 12 additions and 7 deletions

View File

@@ -6,7 +6,8 @@
* v. 2.0. If a copy of the MPL was not distributed with this file, You can * v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/. * obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#ifndef GUARD_TOURMALINE_LOGGING_H
#define GUARD_TOURMALINE_LOGGING_H
#include <array> #include <array>
#include <fstream> #include <fstream>
#include <string> #include <string>
@@ -33,3 +34,4 @@ private:
static std::array<const std::string, 6> LogLevelToString; static std::array<const std::string, 6> LogLevelToString;
}; };
} // namespace Tourmaline::Systems } // namespace Tourmaline::Systems
#endif

View File

@@ -7,7 +7,7 @@
* obtain one at http://mozilla.org/MPL/2.0/. * obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "../ECS.hpp" #include "../../headers/ECS.hpp"
using namespace Tourmaline::ECS; using namespace Tourmaline::ECS;

View File

@@ -7,8 +7,8 @@
* obtain one at http://mozilla.org/MPL/2.0/. * obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "../ECS.hpp" #include "../../headers/ECS.hpp"
#include "../Systems/Random.hpp" #include "../../headers/Systems/Random.hpp"
using namespace Tourmaline::ECS; using namespace Tourmaline::ECS;

View File

@@ -7,7 +7,8 @@
* obtain one at http://mozilla.org/MPL/2.0/. * obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "../Logging.hpp" #include "../../headers/Systems/Logging.hpp"
#include <cerrno> #include <cerrno>
#include <chrono> #include <chrono>
#include <cstddef> #include <cstddef>

View File

@@ -6,7 +6,8 @@
* v. 2.0. If a copy of the MPL was not distributed with this file, You can * v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/. * obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "../Random.hpp" #include "../../headers/Systems/Random.hpp"
#include <bit> #include <bit>
#include <cstdint> #include <cstdint>
#include <ctime> #include <ctime>

View File

@@ -7,7 +7,8 @@
* obtain one at http://mozilla.org/MPL/2.0/. * obtain one at http://mozilla.org/MPL/2.0/.
*/ */
#include "../Types.hpp" #include "../../headers/Types.hpp"
#include <charconv> #include <charconv>
#include <cstdint> #include <cstdint>
#include <cstring> #include <cstring>