summaryrefslogtreecommitdiff
path: root/Source/Asura.Editor/source/widgets/widget.h
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