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

19 lines
544 B
C#

namespace UnityEngine.Purchasing.Extension
{
/// <summary>
/// Configures Unity Purchasing for one or more
/// stores.
///
/// Store implementations must provide an
/// implementation of this interface.
/// </summary>
public interface IPurchasingModule
{
/// <summary>
/// Configures the purchasing module.
/// </summary>
/// <param name="binder"> The object binding the purchasing with store implementations </param>
void Configure(IPurchasingBinder binder);
}
}