#include #include #include namespace Nz { class EditorLevelWindow : public Nz::EditorWindow { public: EditorLevelWindow(EditorBaseApplication* app); virtual void OnEditorGUI() override; protected: void RefreshEntities(); Nz::EnttWorld* m_currentWorld; bool m_dirty; std::vector m_rootNodes; std::map m_nodeToEntity; }; }