mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 23:13:26 +00:00
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.
17 lines
327 B
C++
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
|