Files
omath/include/omath/projectile_prediction/target.hpp
T

19 lines
390 B
C++

//
// Created by Vlad on 6/9/2024.
//
#pragma once
#include "omath/linear_algebra/vector3.hpp"
namespace omath::projectile_prediction
{
template <class ArithmeticType = float>
class Target final
{
public:
Vector3<ArithmeticType> m_origin;
Vector3<ArithmeticType> m_velocity;
bool m_is_airborne{};
};
} // namespace omath::projectile_prediction