Files
XCEngine/editor/app/Features/EditorUtilityWindowRegistry.h

17 lines
415 B
C++

#pragma once
#include "UtilityWindows/EditorUtilityWindowRuntime.h"
namespace XCEngine::UI::Editor::App {
struct EditorColorPickerToolState;
class EditorSceneRuntime;
std::unique_ptr<EditorUtilityWindowPanel> CreateEditorUtilityWindowPanel(
EditorUtilityWindowKind kind,
EditorColorPickerToolState& colorPickerToolState,
EditorSceneRuntime& sceneRuntime);
} // namespace XCEngine::UI::Editor::App