mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
57d9a05f88
- 🛠 Make sure the tutorials compile across platforms! - ✍ Redo quite a bit of the documentation
14 lines
291 B
C++
14 lines
291 B
C++
#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));
|
|
}
|