TransferProgressEvent 

    Namespace: SynicSugar.TitleStorage

    public TransferProgressEvent ProgressInfo

    Description 

    Events to display transfer progress on GUI.

    Property 

    APIdescription
    CurrentFileNameName of current transfer file

    Event 

    APIdescription
    InProgress<string, float>Called each Fetch

    Function 

    APIdescription
    RegisterSet events
    ClearClear events
    using SynicSugar.TitleStorage;
    using UnityEngine;
    using UnityEngine.UI;
    
    public class TitleStorageSample : MonoBehaviour {
        [SerializeField] Text currentProgress;
        void Start() {
            EOSTitleStorage.ProgressInfo.InProgress += DisplayCurrentProgress;
        }
        void OnDestory() {
            EOSTitleStorage.ProgressInfo.InProgress -= DisplayCurrentProgress;
        }
        public void DisplayCurrentProgress(string currentFileName, float progress){
            currentProgress.text = $"{currentFileName}: {progress}%";
        }
    }