mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-18 23:23:28 +00:00
splited lua into multiple sources
This commit is contained in:
17
source/lua/internal.hpp
Normal file
17
source/lua/internal.hpp
Normal file
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user