Initial release commit

This commit is contained in:
Riley-King
2025-02-27 00:01:01 +11:00
parent 2522eacb86
commit a610e67325
20 changed files with 2322 additions and 0 deletions

12
include/includes.h Normal file
View File

@@ -0,0 +1,12 @@
#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