mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
6c40c559e3
change how type T is gleaned from destructors and constructors in case of new syntax add a hell of a lot more examples, update and clean documentation
22 lines
490 B
C++
22 lines
490 B
C++
#define SOL_CHECK_ARGUMENTS 1
|
|
#include <sol.hpp>
|
|
|
|
int main () {
|
|
struct callable {
|
|
int operator()( int a, bool b ) {
|
|
return a + b ? 10 : 20;
|
|
}
|
|
};
|
|
|
|
|
|
sol::state lua;
|
|
// Binds struct as userdata
|
|
// can still be callable, but beware
|
|
// caveats
|
|
lua.set( "not_func", callable() );
|
|
// Binds struct as function
|
|
lua.set( "func", sol::as_function( callable() ) );
|
|
// equivalent: lua.set_function( "func", callable() );
|
|
// equivalent: lua["func"] = callable();
|
|
}
|