effil/tests/cpp/test-utils.h
Ilia c09adc8115 Brand new threading API (#32)
Brand new threading API
2017-04-04 15:48:38 +03:00

15 lines
233 B
C++

#pragma once
#include "shared-table.h"
#include "lua-helpers.h"
#include <sol.hpp>
namespace effil {
inline void bootstrapState(sol::state& lua) {
luaL_openlibs(lua);
SharedTable::getUserType(lua);
}
} // namespace effil