Files
TowerDefence/My project/Library/PackageCache/com.unity.collab-proxy@3351acaba9c9/Editor/_Deprecated/CollabPlugin.cs
Caleb Sandford deQuincey 334021d04e Started project
2025-11-14 17:30:41 +00:00

19 lines
509 B
C#

using System;
using System.ComponentModel;
namespace Unity.PlasticSCM.Editor
{
// Placeholder. 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
{
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public static bool IsEnabled()
{
return false;
}
}
}