Files
LowPolyBattleSim/Library/PackageCache/com.unity.collab-proxy@c854d1f7d97f/Editor/Views/Merge/IIncomingChangesTab.cs
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01: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();
}
}