VR4RoboticArm3/VR4RoboticArm/Library/PackageCache/com.unity.collab-proxy/Editor/_Deprecated/CollabPlugin.cs
IonutMocanu 1d45ac8df0 Main1
2025-09-15 21:53:38 +03:00

19 lines
515 B
C#

using System;
using System.ComponentModel;
namespace Unity.PlasticSCM.Editor
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("CollabPlugin is deprecated and will be removed in a future release", false)]
public static class CollabPlugin
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static bool IsEnabled()
{
return false;
}
}
}