h2-mod/deps/sol2/examples/customization/source/lua_interop.cpp

14 lines
278 B
C++
Raw Normal View History

2024-03-07 03:33:59 -05:00
#include <lua_interop.hpp>
#include <entity.hpp>
#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>
void register_lua(sol::state& lua) {
lua.new_usertype<entity>("entity",
"position",
sol::property(
&entity::get_position, &entity::set_position));
}