#pragma once #include "BsEditorPrerequisites.h" #include "CmModule.h" #include namespace BansheeEditor { class EditorWindowManager : public CM::Module { public: ~EditorWindowManager(); EditorWindow* create(); void destroy(EditorWindowBase* window); protected: CM::Vector::type mEditorWindows; }; }