Files

18 lines
336 B
C#
Raw Permalink Normal View History

2024-12-07 20:55:50 +01:00
namespace Unity.PlasticSCM.Editor.Views.Merge
{
internal interface IIncomingChangesTab
{
bool IsVisible
{
get; set;
}
void OnEnable();
void OnDisable();
void Update();
void OnGUI();
void DrawSearchFieldForTab();
void AutoRefresh();
}
}