mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-02 02:05:55 +02:00
20 lines
235 B
C++
20 lines
235 B
C++
#pragma once
|
|
|
|
#include <lua.hpp>
|
|
extern "C" {
|
|
#include "lua.h"
|
|
#include "lualib.h"
|
|
#include "lauxlib.h"
|
|
}
|
|
|
|
|
|
class Lua
|
|
{
|
|
public:
|
|
Lua();
|
|
void initialize();
|
|
void deInitialize();
|
|
lua_State* state;
|
|
|
|
};
|