lib_unity_purchase/Editor/ServiceProjectSettings/Entity/PurchasingServiceToggleEven...

26 lines
825 B
C#
Raw Normal View History

2024-01-29 18:49:33 +08:00
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
}
}