Net-Game/Library/PackageCache/com.unity.collab-proxy@50ac96531b63/Editor/_Deprecated/CollabPlugin.cs
2025-03-28 08:33:16 -04:00

17 lines
410 B
C#

using System.ComponentModel;
namespace Unity.PlasticSCM.Editor
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static class CollabPlugin
{
// Internal usage. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static bool IsEnabled()
{
return false;
}
}
}