diff options
Diffstat (limited to 'Editor/GUI/EditorWindows.h')
-rw-r--r-- | Editor/GUI/EditorWindows.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Editor/GUI/EditorWindows.h b/Editor/GUI/EditorWindows.h new file mode 100644 index 0000000..90e71a4 --- /dev/null +++ b/Editor/GUI/EditorWindows.h @@ -0,0 +1,28 @@ +#ifndef EDITOR_WINDOW_H +#define EDITOR_WINDOW_H + +#include <windows.h> + +// 一个containner window中有多个viewport +class ContainnerWindow +{ +public: + +private: + HWND m_Window; + POINT m_Size; + +}; + + +// 窗口内的单个viewport +class Viewport +{ +public: + +private: + HWND m_View; + +}; + +#endif
\ No newline at end of file |