20 lines
377 B
C#
20 lines
377 B
C#
|
using UnityEditor;
|
|||
|
|
|||
|
using Unity.PlasticSCM.Editor.UI;
|
|||
|
|
|||
|
namespace Unity.PlasticSCM.Editor
|
|||
|
{
|
|||
|
internal class ProjectWindow
|
|||
|
{
|
|||
|
internal static void Repaint()
|
|||
|
{
|
|||
|
EditorWindow projectWindow = FindEditorWindow.ProjectWindow();
|
|||
|
|
|||
|
if (projectWindow == null)
|
|||
|
return;
|
|||
|
|
|||
|
projectWindow.Repaint();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|