mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-18 22:03:26 +00:00
18 lines
449 B
C++
18 lines
449 B
C++
//
|
|
// Created by orange on 07.03.2026.
|
|
//
|
|
#pragma once
|
|
#ifdef OMATH_ENABLE_LUA
|
|
#include <sol/sol.hpp>
|
|
|
|
namespace omath::lua::detail
|
|
{
|
|
void register_vec2(sol::table& omath_table);
|
|
void register_vec3(sol::table& omath_table);
|
|
void register_vec4(sol::table& omath_table);
|
|
void register_color(sol::table& omath_table);
|
|
void register_shared_types(sol::table& omath_table);
|
|
void register_engines(sol::table& omath_table);
|
|
}
|
|
#endif
|