No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IIncomingChangesTab.cs 308B

12345678910111213141516
  1. namespace Unity.PlasticSCM.Editor.Views.IncomingChanges
  2. {
  3. internal interface IIncomingChangesTab
  4. {
  5. bool IsVisible
  6. {
  7. get; set;
  8. }
  9. void OnEnable();
  10. void OnDisable();
  11. void Update();
  12. void OnGUI();
  13. void AutoRefresh();
  14. }
  15. }