1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include "EditorManager.h" #ifdef GAMELAB_DEBUG const std::string EditorDefine::kResourceRoot = ""; #else const std::string EditorDefine::kResourceRoot = "./"; #endif void EditorManager::SetMainWindow(ContainerWindow* wnd) { m_MainWindow = wnd; } ContainerWindow* EditorManager::GetMainWindow() { return m_MainWindow; }