moving from .h to .hpp to make thing more clear

This commit is contained in:
2024-10-20 00:32:34 +03:00
parent e85f445dc4
commit 3809103d93
34 changed files with 45 additions and 45 deletions
+22
View File
@@ -0,0 +1,22 @@
//
// Created by Vlad on 6/9/2024.
//
#pragma once
#include "omath/Vector3.hpp"
namespace omath::prediction
{
class Projectile final
{
public:
[[nodiscard]]
Vector3 PredictPosition(float pitch, float yaw, float time, float gravity) const;
Vector3 m_origin;
float m_launchSpeed{};
float m_gravityScale{};
};
}