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
331 B
C++
17 lines
331 B
C++
//
|
|
// Created by Vlad on 6/9/2024.
|
|
//
|
|
|
|
#pragma once
|
|
#include "omath/linear_algebra/vector3.hpp"
|
|
|
|
namespace omath::projectile_prediction
|
|
{
|
|
class Projectile final
|
|
{
|
|
public:
|
|
Vector3<float> m_origin;
|
|
float m_launch_speed{};
|
|
float m_gravity_scale{};
|
|
};
|
|
} // namespace omath::projectile_prediction
|