VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.collab-proxy/Editor/UI/StatusBar/GUIContentNotification.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

24 lines
577 B
C#

using UnityEngine;
namespace Unity.PlasticSCM.Editor.UI.StatusBar
{
internal class GUIContentNotification : INotificationContent
{
internal GUIContentNotification(string content) : this(new GUIContent(content)) { }
internal GUIContentNotification(GUIContent content)
{
mGUIContent = content;
}
void INotificationContent.OnGUI()
{
GUILayout.Label(
mGUIContent,
UnityStyles.StatusBar.NotificationLabel);
}
readonly GUIContent mGUIContent;
}
}