arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.collab-proxy@ab839cc7d2ad/Editor/Views/Merge/IIncomingChangesTab.cs

18 lines
336 B
C#
Raw Normal View History

2025-09-25 22:01:28 +02: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();
}
}