SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Editor/ServiceProjectSettings/Entity/PurchasingServiceToggleEvent.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

26 lines
825 B
C#

using System;
namespace UnityEditor.Purchasing
{
/// <summary>
/// This is an internal API.
/// We recommend that you do not use it as it will be removed in a future release.
/// </summary>
[Obsolete("Internal API, it will be removed soon.")]
public enum PurchasingServiceToggleEvent
{
/// <summary>
/// This is an internal API.
/// We recommend that you do not use it as it will be removed in a future release.
/// </summary>
[Obsolete("Internal API, it will be removed soon.")]
Disabled,
/// <summary>
/// This is an internal API.
/// We recommend that you do not use it as it will be removed in a future release.
/// </summary>
[Obsolete("Internal API, it will be removed soon.")]
Enabled
}
}