Files

13 lines
248 B
C#
Raw Permalink Normal View History

2025-08-05 09:30:40 +01:00
using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI
{
internal static class DrawStaticElement
{
internal static void Empty()
{
GUILayout.Label(GUIContent.none, UnityStyles.NoSizeStyle);
}
}
}