VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.collab-proxy/Editor/Views/Merge/IIncomingChangesTab.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03: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();
}
}