h1-mod/deps/sol2/examples/source/docs/simple_functions.cpp
2024-03-07 00:54:32 -05:00

18 lines
263 B
C++

#define SOL_ALL_SAFETIES_ON 1
#include <sol/sol.hpp>
int main() {
sol::state lua;
int x = 0;
lua.set_function("beep", [&x] { ++x; });
lua.script("beep()");
SOL_ASSERT(x == 1);
sol::function beep = lua["beep"];
beep();
SOL_ASSERT(x == 2);
return 0;
}