Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.collab-proxy@1ec4e416a4af/Editor/_Deprecated/Settings/PlasticProjectSettingsProvider.cs

30 lines
904 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
using System;
using System.ComponentModel;
using UnityEditor;
namespace Unity.PlasticSCM.Editor.Settings
{
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("PlasticProjectSettingsProvider is deprecated and will be removed in a future release", false)]
public class PlasticProjectSettingsProvider : SettingsProvider
{
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
public PlasticProjectSettingsProvider(
string path, SettingsScope scope = SettingsScope.User)
: base(path, scope)
{
}
// Placeholder. This isn't a public API.
[EditorBrowsable(EditorBrowsableState.Never)]
[SettingsProvider]
public static SettingsProvider CreateSettingsProvider()
{
return null;
}
}
}