Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IPurchasingModule.cs 544B

123456789101112131415161718
  1. namespace UnityEngine.Purchasing.Extension
  2. {
  3. /// <summary>
  4. /// Configures Unity Purchasing for one or more
  5. /// stores.
  6. ///
  7. /// Store implementations must provide an
  8. /// implementation of this interface.
  9. /// </summary>
  10. public interface IPurchasingModule
  11. {
  12. /// <summary>
  13. /// Configures the purchasing module.
  14. /// </summary>
  15. /// <param name="binder"> The object binding the purchasing with store implementations </param>
  16. void Configure(IPurchasingBinder binder);
  17. }
  18. }