Files
CartoonFPS/Library/PackageCache/com.unity.collab-proxy@c854d1f7d97f/Editor/UI/DrawStaticElement.cs

13 lines
248 B
C#
Raw 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);
}
}
}