blob: 5fb18f1099ddc59b8627943ce13d7f31838de11b (
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 <asura-lib-utils/type.h>
namespace AusraEditor
{
///
/// Asura EditorĿؼȾں¼ѯֻ¼Ӧӿڡ
///
ASURA_ABSTRACT class Widget
{
public:
// ؼлƷ
virtual void Draw() = 0;
};
}
#endif
|