minesweeper_game/Library/PackageCache/com.unity.purchasing@649c6c7b3b1b/Documentation~/UnityIAPIStoreInitialization.md
2025-03-15 14:30:26 -04:00

12 lines
348 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Initialization
==============
Your stores ``Initialize`` method is called by Unity IAP with an ``IStoreCallback`` that your store uses to communicate back to Unity IAP asynchronously.
````
void Initialize(IStoreCallback callback) {
// Keep a reference to the callback for communicating with Unity IAP.
this.callback = callback;
}
````