2026-04-27 15:37:39 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
2026-04-27 19:16:08 +08:00
|
|
|
#include "UtilityWindows/EditorUtilityWindowRuntime.h"
|
2026-04-27 15:37:39 +08:00
|
|
|
|
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
|
|
2026-04-29 14:31:55 +08:00
|
|
|
struct EditorColorPickerToolState;
|
|
|
|
|
class EditorSceneRuntime;
|
|
|
|
|
|
2026-04-27 15:37:39 +08:00
|
|
|
std::unique_ptr<EditorUtilityWindowPanel> CreateEditorUtilityWindowPanel(
|
2026-04-29 14:31:55 +08:00
|
|
|
EditorUtilityWindowKind kind,
|
|
|
|
|
EditorColorPickerToolState& colorPickerToolState,
|
|
|
|
|
EditorSceneRuntime& sceneRuntime);
|
2026-04-27 15:37:39 +08:00
|
|
|
|
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|
|
|
|
|
|