This commit is contained in:
Hartmut Seichter 2020-12-04 22:05:04 +01:00
parent 425072bdec
commit 2ef6af25c1
85 changed files with 43072 additions and 120 deletions

View file

@ -1,8 +1,13 @@
#ifndef PW_SCRIPTING_RUNTIME_LUA_HPP
#define PW_SCRIPTING_RUNTIME_LUA_HPP
#include "sol/sol.hpp"
// needed for migrating to Lua 5.4.x while keeping sol2 2.20.x
//
// #define lua_newuserdata(L, sz) lua_newuserdatauv((L), (sz), 0)
#include <lua.hpp>
#include "sol/sol.hpp"
#include <map>
#include <pw/core/debug.hpp>