Exemplo n.º 1
0
    public static void luaL_requiref(LuaState state, string moduleName, LuaCFunction openFunc, int glb)
    {
        IntPtr funcPtr = Marshal.GetFunctionPointerForDelegate(openFunc);

        LuaNativeBinding.luaL_requiref(state, moduleName, funcPtr, glb);
    }