Sin descripción
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.

GUISpace.cs 238B

1234567891011121314
  1. using UnityEngine;
  2. namespace Unity.PlasticSCM.Editor.UI
  3. {
  4. internal static class GUISpace
  5. {
  6. internal static void ForToolbar()
  7. {
  8. #if UNITY_2019_1_OR_NEWER
  9. GUILayout.Space(5);
  10. #endif
  11. }
  12. }
  13. }