Brak opisu
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.

IMicrosoftExtensions.cs 407B

12345678910111213141516
  1. using System;
  2. using UnityEngine.Purchasing;
  3. namespace UnityEngine.Purchasing
  4. {
  5. /// <summary>
  6. /// Common interface for Universal Windows Platform purchasing extensions.
  7. /// </summary>
  8. public interface IMicrosoftExtensions : IStoreExtension
  9. {
  10. /// <summary>
  11. /// Restores previously purchased transactions.
  12. /// </summary>
  13. void RestoreTransactions();
  14. }
  15. }