Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/UVCSToolbar/Headless/HeadlessUpdateReport.cs

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);
}
}
}