Update to sol2 v2.20.6

This commit is contained in:
Desone Burns II
2020-11-18 17:01:43 -07:00
parent dfc1bfc27e
commit deacc8fb5c
409 changed files with 386663 additions and 14519 deletions
+19
View File
@@ -0,0 +1,19 @@
#define SOL_CHECK_ARGUMENTS 1
#include <sol.hpp>
#include "../assert.hpp"
#include <iostream>
int main(int, char*[]) {
std::cout << "=== lua inheritance ===" << std::endl;
sol::state lua;
lua.open_libraries(sol::lib::base);
/* This example is currently under construction.
For inheritance and classes within Lua,
consider using kikito's middleclass
-- https://github.com/kikito/middleclass */
return 0;
}