summaryrefslogtreecommitdiff
path: root/source/Asura.Editor/Controls/GUIPanel.h
blob: 9ff6eed8dd9118ee96b7e266ecaf2c6a584646b6 (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
#ifndef _ASURA_EDITOR_GUIPANEL_H_
#define _ASURA_EDITOR_GUIPANEL_H_

#include <asura-base/Classes.h>

#include "../System/GUIWindow.h"

namespace_begin(AsuraEditor)

// GUIWindowĵ
class GUIPanel
{
public: 

	GUIPanel();
	~GUIPanel();

private: 

	GUIWindow* m_GUIWindow; // Ļƴ


};


namespace_end

#endif