This commit is contained in:
2025-03-21 04:21:31 +03:00
parent b9ac44a901
commit 2688d977a9
24 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
//
// Created by Vlad on 6/9/2024.
//
#pragma once
#include "omath/Vector3.hpp"
namespace omath::projectile_prediction
{
class Projectile final
{
public:
[[nodiscard]]
Vector3<float> PredictPosition(float pitch, float yaw, float time, float gravity) const;
Vector3<float> m_origin;
float m_launchSpeed{};
float m_gravityScale{};
};
}