mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 23:13:26 +00:00
Refactors the projectile prediction engine by introducing an interface and making the legacy implementation more flexible. The legacy engine is updated to allow for coordinate system customization through virtual methods, enabling usage in different game environments. Also introduces vcpkg support for easier dependency management and adds boost-asio as a dependency.
11 lines
231 B
C++
11 lines
231 B
C++
//
|
|
// Created by Vlad on 6/9/2024.
|
|
//
|
|
|
|
#include "omath/projectile_prediction/projectile.hpp"
|
|
#include <omath/engines/source_engine/formulas.hpp>
|
|
|
|
namespace omath::projectile_prediction
|
|
{
|
|
} // namespace omath::projectile_prediction
|