added rage engine support

fix

patch
This commit is contained in:
2026-06-03 13:42:13 +03:00
parent 56ed7e2f6e
commit b7210dec4c
13 changed files with 471 additions and 2 deletions
@@ -0,0 +1,20 @@
//
// Created by Codex on 6/3/2026.
//
#pragma once
#include <omath/engines/rage_engine/constants.hpp>
#include <omath/engines/rage_engine/formulas.hpp>
namespace omath::rage_engine
{
class MeshTrait final
{
public:
[[nodiscard]]
static Mat4X4 rotation_matrix(const ViewAngles& rotation)
{
return rage_engine::rotation_matrix(rotation);
}
};
} // namespace omath::rage_engine