blob: b8c2f565d28e2da36444d06dc41c4a9f2d043b21 (
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
|
#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:
Button();
private:
// Image mIcon; // ͼ꣬Ҫ
// Text mText; //ť
LUAX_DECL_FACTORY(Button); // AsuraEditor.Button
};
}
#endif
|