SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/Stores/WindowsStore/IMicrosoftConfiguration.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

18 lines
614 B
C#

using UnityEngine.Purchasing.Extension;
namespace UnityEngine.Purchasing
{
/// <summary>
/// Common interface for Universal Windows Platform configuration.
/// </summary>
public interface IMicrosoftConfiguration : IStoreConfiguration
{
/// <summary>
/// Whether or not to use the Mock Billing system in UWP builds.
/// If mock billing is used, the app can be tested before registering the app on the Windows Store.
/// App releases should not be shipped with this flag set to true.
/// </summary>
bool useMockBillingSystem { get; set; }
}
}