17 lines
415 B
C++
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
|
|
|