This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/lua/LuaButton.h
2019-04-09 15:28:40 +02:00

28 lines
457 B
C++

#pragma once
#include "LuaLuna.h"
#include "LuaComponent.h"
namespace ui
{
class Button;
}
class LuaScriptInterface;
class LuaButton: public LuaComponent
{
ui::Button * button;
LuaComponentCallback actionFunction;
void triggerAction();
int action(lua_State * l);
int text(lua_State * l);
int enabled(lua_State * l);
public:
static const char className[];
static Luna<LuaButton>::RegType methods[];
LuaButton(lua_State * l);
~LuaButton();
};