Files
omath/include/omath/projectile_prediction/projectile.hpp
2026-03-17 20:31:46 +03:00

18 lines
386 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;
Vector3<float> m_launch_offset{0.f, 0.f, 0.f};
float m_launch_speed{};
float m_gravity_scale{};
};
} // namespace omath::projectile_prediction