arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.collab-proxy@ab839cc7d2ad/Editor/_Deprecated/CollabPlugin.cs
Daniel 2e704cae70 init
Init Commit Unity
2025-09-25 22:01:28 +02: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;
}
}
}