Files
CartoonFPS/Library/PackageCache/com.unity.collab-proxy@c854d1f7d97f/Editor/_Deprecated/CollabPlugin.cs

19 lines
515 B
C#
Raw Normal View History

2025-08-05 09:30:40 +01:00
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;
}
}
}