Files
omath/include/omath/projectile_prediction/target.hpp
Orange d74c66990a Refactors: Moves linear algebra to new directory
Moves linear algebra headers to a new subdirectory to improve project structure.

Updates includes to reflect the directory change.
Adds vcpkg to the tracked repositories.
2025-08-31 23:36:05 +03:00

17 lines
327 B
C++

//
// Created by Vlad on 6/9/2024.
//
#pragma once
#include "omath/linear_algebra/vector3.hpp"
namespace omath::projectile_prediction
{
class Target final
{
public:
Vector3<float> m_origin;
Vector3<float> m_velocity;
bool m_is_airborne{};
};
} // namespace omath::projectile_prediction