18 lines
422 B
C
18 lines
422 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <filesystem>
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace XCEngine::NewEditor {
|
||
|
|
|
||
|
|
struct EditorShellAsset {
|
||
|
|
std::string screenId = "new_editor.shell";
|
||
|
|
std::filesystem::path documentPath = {};
|
||
|
|
std::filesystem::path themePath = {};
|
||
|
|
std::filesystem::path captureRootPath = {};
|
||
|
|
};
|
||
|
|
|
||
|
|
EditorShellAsset BuildDefaultEditorShellAsset(const std::filesystem::path& repoRoot);
|
||
|
|
|
||
|
|
} // namespace XCEngine::NewEditor
|