blob: 437e2bf0639b8c0ad10ef658b122eb66b38de033 (
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
|
#ifndef __ASURA_EDITOR_WIDGET_H__
#define __ASURA_EDITOR_WIDGET_H__
#include <Object.h>
namespace AusraEditor
{
///
/// Asura EditorĿؼȾں¼ѯֻ¼Ӧӿڡ
///
class Widget : virtual public Object
{
public:
// ؼлƷ
virtual void Draw() = 0;
};
}
#endif
|