minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Runtime/WinRTStub/Factory.cs
2025-03-15 14:30:26 -04:00

21 lines
565 B
C#

using System;
namespace UnityEngine.Purchasing.Default
{
/// <summary>
/// A factory for creating stub WinRT Store objects.
/// </summary>
public class Factory
{
/// <summary>
/// Creates a <c>WinRTStore</c> objects.
/// </summary>
/// <param name="mocked"> Whether or not to use a mock store. </param>
/// <returns> The instance of the <c>WinRTStore</c> created</returns>
public static IWindowsIAP Create(bool mocked)
{
throw new NotImplementedException();
}
}
}