33 lines
582 B
C++
33 lines
582 B
C++
#pragma once
|
|
|
|
#include "delegates.hpp"
|
|
#include "logic/scripting/scripting.hpp"
|
|
|
|
#ifdef __linux__
|
|
#include <luajit-2.1/luaconf.h>
|
|
|
|
#include <luajit-2.1/lua.hpp>
|
|
#else
|
|
#include <lua.hpp>
|
|
#endif
|
|
#include <glm/glm.hpp>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#ifndef LUAJIT_VERSION
|
|
#error LuaJIT required
|
|
#endif
|
|
|
|
namespace lua {
|
|
class luaerror : public std::runtime_error {
|
|
public:
|
|
luaerror(const std::string& message);
|
|
};
|
|
|
|
void log_error(const std::string& text);
|
|
|
|
using State = lua_State;
|
|
using Number = lua_Number;
|
|
using Integer = lua_Integer;
|
|
}
|