28 lines
277 B
C
28 lines
277 B
C
|
#pragma once
|
||
|
#include <string>
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
#include "lauxlib.h"
|
||
|
#include "lua.h"
|
||
|
#include "lualib.h"
|
||
|
}
|
||
|
|
||
|
|
||
|
#include "LuaScriptingManager.h"
|
||
|
|
||
|
|
||
|
/*
|
||
|
class LuaScript {
|
||
|
public:
|
||
|
|
||
|
LuaScript(const std::string&);
|
||
|
void execute(lua_State& l);
|
||
|
|
||
|
private:
|
||
|
std::string filePath;
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
*/
|