Files
XCEngine/editor/app/Platform/Win32/System/Win32SystemInteractionHost.h
2026-04-25 16:46:01 +08:00

16 lines
413 B
C++

#pragma once
#include "System/SystemInteractionService.h"
namespace XCEngine::UI::Editor::Host {
class Win32SystemInteractionHost final : public System::SystemInteractionService {
public:
bool CopyTextToClipboard(std::string_view text) override;
bool RevealPathInFileBrowser(
const std::filesystem::path& path,
bool selectTarget) override;
};
} // namespace XCEngine::UI::Editor::Host