mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-02 02:05:55 +02:00
10 lines
195 B
C++
10 lines
195 B
C++
#pragma once
|
|
#include "Lua.h"
|
|
#include <string>
|
|
#include <map>
|
|
|
|
class LuaEvent {
|
|
public:
|
|
void trigger(lua_State *l, std::string type);
|
|
bool isBusy(lua_State *l, std::string type);
|
|
}; |