Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
io.gs2.unity.sdk.uikit / Core / Fetcher / IAcquireActionsFetcher.cs
Size: Mime:
using System.Collections.Generic;
using Gs2.Unity.Core.Model;
using UnityEngine;
using UnityEngine.Events;

namespace Gs2.Unity.UiKit.Gs2Core.Fetcher
{
    public interface IAcquireActionsFetcher
    {
        List<EzAcquireAction> AcquireActions(string context = "default");

        bool IsFetched();
        
        UnityEvent OnFetchedEvent();

        GameObject GameObject();
    }
}