Files
omath/include/omath/projectile_prediction/projectile.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
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