Nessuna descrizione
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 283B

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