penis/Library/PackageCache/com.unity.collab-proxy@ab839cc7d2ad/Editor/UVCSToolbar/Headless/HeadlessUpdateReport.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

20 lines
488 B
C#

using System.Collections;
using Codice.CM.Common;
using PlasticGui.WorkspaceWindow.Update;
using Unity.PlasticSCM.Editor.Developer.UpdateReport;
namespace Unity.PlasticSCM.Editor.Toolbar.Headless
{
internal class HeadlessUpdateReport : IUpdateReport
{
void IUpdateReport.Show(WorkspaceInfo wkInfo, IList reportLines)
{
UpdateReportDialog.ShowReportDialog(
wkInfo,
reportLines,
null);
}
}
}