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/LuaLabel.h
jacob1 6749c2547f New SConscript (hopefully better)
Fixes a lot of bugs, also almost all options are no longer needed and are just auto-detected
2014-06-08 19:33:58 -04:00

24 lines
332 B
C++

#pragma once
#include "LuaLuna.h"
#include "LuaComponent.h"
namespace ui
{
class Label;
}
class LuaScriptInterface;
class LuaLabel: public LuaComponent
{
ui::Label * label;
int text(lua_State * l);
public:
static const char className[];
static Luna<LuaLabel>::RegType methods[];
LuaLabel(lua_State * l);
~LuaLabel();
};