33 lines
491 B
C
33 lines
491 B
C
|
#pragma once
|
||
|
|
||
|
extern "C" {
|
||
|
#include "lua.h"
|
||
|
#include "lauxlib.h"
|
||
|
#include "lualib.h"
|
||
|
}
|
||
|
|
||
|
#include "LuaLuna.h"
|
||
|
|
||
|
namespace ui
|
||
|
{
|
||
|
class Component;
|
||
|
}
|
||
|
|
||
|
class LuaScriptInterface;
|
||
|
|
||
|
class LuaComponent
|
||
|
{
|
||
|
protected:
|
||
|
ui::Component * component;
|
||
|
lua_State * l;
|
||
|
int position(lua_State * l);
|
||
|
int size(lua_State * l);
|
||
|
int visible(lua_State * l);
|
||
|
public:
|
||
|
LuaScriptInterface * ci;
|
||
|
int UserData;
|
||
|
|
||
|
ui::Component * GetComponent() { return component; }
|
||
|
LuaComponent(lua_State * l);
|
||
|
~LuaComponent();
|
||
|
};
|