mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
002303d52b
add assert.hpp for better code understanding prepare to rewrite all the damn docs, and update the tutorials...
26 lines
436 B
C++
26 lines
436 B
C++
#define SOL_CHECK_ARGUMENTS 1
|
|
#include <sol.hpp>
|
|
|
|
#include "my_object.hpp"
|
|
#include "assert.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
int main(int, char*[]) {
|
|
std::cout << "=== require from DLL example ===" << std::endl;
|
|
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::package);
|
|
|
|
lua.script_file(R"(
|
|
mo = require("my_object")
|
|
|
|
obj = mo.test.new(24)
|
|
print(obj.value)
|
|
)");
|
|
|
|
my_object::test& obj = lua["obj"];
|
|
c_assert(obj.value == 24);
|
|
|
|
return 0;
|
|
} |