mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-19 04:43:26 +00:00
18 lines
386 B
C++
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
|