Fixes a lot of bugs, also almost all options are no longer needed and are just auto-detected
24 lines
332 B
C++
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();
|
|
};
|