Files
3D-FPS/3D FPS/Library/PackageCache/com.unity.collab-proxy@2.6.0/Editor/_Deprecated/CollabPlugin.cs

17 lines
410 B
C#
Raw Normal View History

2024-12-07 20:55:50 +01:00
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;
}
}
}