StellarXipher/Library/PackageCache/com.unity.collab-proxy@001b54a8988a/Editor/_Deprecated/CollabPlugin.cs
2025-02-06 16:45:46 -05: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;
}
}
}