using System; using System.Collections.Generic; using UnityEngine.Purchasing.Extension; namespace UnityEngine.Purchasing { internal class SimpleCatalogProvider : ICatalogProvider { private readonly Action>> m_Func; internal SimpleCatalogProvider(Action>> func) { m_Func = func; } public void FetchProducts(Action> callback) { m_Func?.Invoke(callback); } } }