13 lines
258 B
C++
13 lines
258 B
C++
#pragma once
|
|
#include <lua.hpp>
|
|
#include <luajit.h>
|
|
#include <lauxlib.h>
|
|
#include <thread>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <string>
|
|
#include <set>
|
|
|
|
// Any function marked with this means that the exposed lua API is not sandboxed
|
|
#define LUA_UNSAFE
|