fixed include names

This commit is contained in:
2025-03-21 04:40:59 +03:00
parent c7dda0ff10
commit 5acd166d8f
35 changed files with 60 additions and 61 deletions

View File

@@ -3,7 +3,7 @@
//
#pragma once
#include "omath/Angles.hpp"
#include "omath/angles.hpp"
#include <algorithm>
namespace omath

View File

@@ -3,8 +3,8 @@
//
#pragma once
#include <numbers>
#include <cmath>
#include <numbers>
namespace omath::angles
{

View File

@@ -4,9 +4,9 @@
#pragma once
#include "omath/Vector3.hpp"
#include <cstdint>
#include "omath/Vector4.hpp"
#include "omath/vector3.hpp"
#include "omath/vector4.hpp"
namespace omath
{

View File

@@ -3,8 +3,8 @@
//
#pragma once
#include "Constants.hpp"
#include "omath/projection/Camera.hpp"
#include "omath/engines/iw_engine/constants.hpp"
#include "omath/projection/camera.hpp"
namespace omath::iw_engine
{

View File

@@ -3,9 +3,9 @@
//
#pragma once
#include <omath/Vector3.hpp>
#include <omath/Mat.hpp>
#include <omath/Angle.hpp>
#include <omath/vector3.hpp>
#include <omath/mat.hpp>
#include <omath/angle.hpp>
#include <omath/view_angles.hpp>
namespace omath::iw_engine

View File

@@ -3,7 +3,7 @@
//
#pragma once
#include "Constants.hpp"
#include "omath/engines/iw_engine/constants.hpp"
namespace omath::iw_engine
{

View File

@@ -2,8 +2,8 @@
// Created by Orange on 12/23/2024.
//
#pragma once
#include "Constants.hpp"
#include "omath/projection/Camera.hpp"
#include "omath/engines/opengl_engine/constants.hpp"
#include "omath/projection/camera.hpp"
namespace omath::opengl_engine
{

View File

@@ -3,9 +3,9 @@
//
#pragma once
#include <omath/Vector3.hpp>
#include <omath/Mat.hpp>
#include <omath/Angle.hpp>
#include <omath/angle.hpp>
#include <omath/mat.hpp>
#include <omath/vector3.hpp>
#include <omath/view_angles.hpp>
namespace omath::opengl_engine

View File

@@ -2,7 +2,7 @@
// Created by Orange on 12/23/2024.
//
#pragma once
#include "Constants.hpp"
#include "omath/engines/opengl_engine/constants.hpp"
namespace omath::opengl_engine

View File

@@ -2,8 +2,8 @@
// Created by Orange on 12/4/2024.
//
#pragma once
#include "Constants.hpp"
#include "omath/projection/Camera.hpp"
#include "omath/engines/source_engine/constants.hpp"
#include "omath/projection/camera.hpp"
namespace omath::source_engine
{

View File

@@ -3,9 +3,9 @@
//
#pragma once
#include <omath/Vector3.hpp>
#include <omath/Mat.hpp>
#include <omath/Angle.hpp>
#include <omath/vector3.hpp>
#include <omath/mat.hpp>
#include <omath/angle.hpp>
#include <omath/view_angles.hpp>
namespace omath::source_engine

View File

@@ -2,7 +2,7 @@
// Created by Orange on 12/4/2024.
//
#pragma once
#include "Constants.hpp"
#include "omath/engines/source_engine/constants.hpp"
namespace omath::source_engine
{

View File

@@ -4,11 +4,11 @@
#pragma once
#include <algorithm>
#include <array>
#include <iomanip>
#include <sstream>
#include <stdexcept>
#include <utility>
#include "Vector3.hpp"
#include <iomanip>
#include "omath/vector3.hpp"
namespace omath
{

View File

@@ -2,7 +2,7 @@
#include <initializer_list>
#include <memory>
#include <string>
#include "Vector3.hpp"
#include "omath/vector3.hpp"
namespace omath
{

View File

@@ -4,8 +4,8 @@
#pragma once
#include <vector>
#include "navigation_mesh.hpp"
#include "omath/Vector3.hpp"
#include "omath/pathfinding/navigation_mesh.hpp"
#include "omath/vector3.hpp"
namespace omath::pathfinding
{

View File

@@ -4,17 +4,17 @@
#pragma once
#include "omath/Vector3.hpp"
#include <expected>
#include <vector>
#include <string>
#include <vector>
#include "omath/vector3.hpp"
namespace omath::pathfinding
{
enum Error
{
};
class NavigationMesh final

View File

@@ -2,9 +2,9 @@
// Created by Vlad on 2/23/2025.
//
#pragma once
#include "Projectile.hpp"
#include "Target.hpp"
#include "omath/Vector3.hpp"
#include "omath/projectile_prediction/target.hpp"
#include "omath/vector3.hpp"
#include "projectile.hpp"
namespace omath::projectile_prediction

View File

@@ -5,10 +5,10 @@
#pragma once
#include <optional>
#include "omath/Vector3.hpp"
#include "omath/projectile_prediction/proj_pred_engine.hpp"
#include "omath/projectile_prediction/Projectile.hpp"
#include "omath/projectile_prediction/Target.hpp"
#include "omath/projectile_prediction/projectile.hpp"
#include "omath/projectile_prediction/target.hpp"
#include "omath/vector3.hpp"
namespace omath::projectile_prediction

View File

@@ -3,7 +3,7 @@
//
#pragma once
#include "omath/Vector3.hpp"
#include "omath/vector3.hpp"
namespace omath::projectile_prediction
{

View File

@@ -3,7 +3,7 @@
//
#pragma once
#include "omath/Vector3.hpp"
#include "omath/vector3.hpp"
namespace omath::projectile_prediction
{

View File

@@ -5,11 +5,11 @@
#pragma once
#include <expected>
#include <omath/Mat.hpp>
#include <omath/Vector3.hpp>
#include "error_codes.hpp"
#include <omath/Angle.hpp>
#include <omath/Mat.hpp>
#include <omath/vector3.hpp>
#include <type_traits>
#include "omath/projection/error_codes.hpp"
namespace omath::projection
{

View File

@@ -2,7 +2,7 @@
// Created by Orange on 11/13/2024.
//
#pragma once
#include "omath/Vector3.hpp"
#include "omath/vector3.hpp"
namespace omath
{

View File

@@ -4,12 +4,11 @@
#pragma once
#include "Vector2.hpp"
#include <cstdint>
#include <expected>
#include <functional>
#include "omath/Angle.hpp"
#include "omath/Vector2.hpp"
#include "omath/angle.hpp"
#include "omath/vector2.hpp"
namespace omath
{

View File

@@ -3,8 +3,8 @@
//
#pragma once
#include <omath/Vector3.hpp>
#include <algorithm>
#include <omath/vector3.hpp>
namespace omath