StellarXipher/Library/PackageCache/com.unity.collab-proxy@001b54a8988a/Editor/Views/Merge/IIncomingChangesTab.cs
2025-02-06 16:45:46 -05: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();
}
}