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