Files
2025-11-30 08:35:03 +02:00

18 lines
336 B
C#

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