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