Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ProjectWindow.cs 377B

12345678910111213141516171819
  1. using UnityEditor;
  2. using Unity.PlasticSCM.Editor.UI;
  3. namespace Unity.PlasticSCM.Editor
  4. {
  5. internal class ProjectWindow
  6. {
  7. internal static void Repaint()
  8. {
  9. EditorWindow projectWindow = FindEditorWindow.ProjectWindow();
  10. if (projectWindow == null)
  11. return;
  12. projectWindow.Repaint();
  13. }
  14. }
  15. }