blob: 00f1c9918bf8d7f5301eeab946a6ad48e5a3cdda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef __ASURA_EDITOR_BUTTON_H__
#define __ASURA_EDITOR_BUTTON_H__
// Asura.Engine Headers
#include <Scripting/Luax.hpp>
#include "Widget.h"
namespace AsuraEditor
{
class Button
: public Widget
, public AEScripting::Portable<Button>
{
public:
Button();
private:
// Image mIcon; // ͼ꣬Ҫ
// Text mText; //ť
LUAX_DECL_FACTORY(Button); // AsuraEditor.Button
};
}
#endif
|