24 lines
687 B
C++
24 lines
687 B
C++
#pragma once
|
|
|
|
#include "Composition/EditorShellVariant.h"
|
|
|
|
#include <XCEditor/Shell/UIEditorShellAsset.h>
|
|
#include <XCEditor/Workspace/UIEditorWorkspaceController.h>
|
|
|
|
#include <filesystem>
|
|
#include <string_view>
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
EditorShellAsset BuildEditorApplicationShellAsset(const std::filesystem::path& repoRoot);
|
|
|
|
UIEditorShellInteractionDefinition BuildEditorApplicationShellInteractionDefinition(
|
|
const EditorShellAsset& asset,
|
|
const UIEditorWorkspaceController& controller,
|
|
std::string_view statusText,
|
|
std::string_view captureText,
|
|
EditorShellVariant variant = EditorShellVariant::Primary);
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|
|
|