renamed headers

This commit is contained in:
Vladislav Alpatov
2025-03-21 04:17:42 +03:00
parent 35658b1f6d
commit b9ac44a901
23 changed files with 18 additions and 18 deletions

View File

@@ -1,7 +1,7 @@
//
// Created by Orange on 11/13/2024.
//
#include "omath/collision/LineTracer.hpp"
#include "omath/collision/line_tracer.hpp"
namespace omath::collision
{

View File

@@ -1,7 +1,7 @@
//
// Created by Vlad on 28.07.2024.
//
#include "omath/pathfinding/Astar.hpp"
#include "omath/pathfinding/a_star.hpp"
#include <algorithm>
#include <optional>

View File

@@ -1,7 +1,7 @@
//
// Created by Vlad on 28.07.2024.
//
#include "omath/pathfinding/NavigationMesh.hpp"
#include "omath/pathfinding/navigation_mesh.hpp"
#include <stdexcept>
#include <algorithm>

View File

@@ -1,7 +1,7 @@
//
// Created by Vlad on 2/23/2025.
//
#include "omath/projectile_prediction/ProjPredEngine.hpp"
#include "omath/projectile_prediction/proj_pred_engine.hpp"
namespace omath::projectile_prediction

View File

@@ -1,7 +1,7 @@
//
// Created by Vlad on 2/23/2025.
//
#include "omath/projectile_prediction/ProjPredEngineAVX2.hpp"
#include "omath/projectile_prediction/proj_pred_engine_avx2.hpp"
#include "source_location"
namespace omath::projectile_prediction

View File

@@ -1,4 +1,4 @@
#include "omath/projectile_prediction/ProjPredEngineLegacy.hpp"
#include "omath/projectile_prediction/proj_pred_engine_legacy.hpp"
#include <cmath>
#include <omath/Angles.hpp>