// // Created by orange on 07.03.2026. // #ifdef OMATH_ENABLE_LUA #include "engine_utils.hpp" #include #include #include namespace { struct OpenGLEngineTraits { using PitchAngle = omath::opengl_engine::PitchAngle; using ViewAngles = omath::opengl_engine::ViewAngles; using Camera = omath::opengl_engine::Camera; }; } // namespace namespace omath::lua::detail { void register_opengl_engine(sol::table& omath_table) { register_engine(omath_table, "opengl"); } } // namespace omath::lua::detail #endif