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    
Size: Mime:
using System;
using System.Collections.Generic;
using Gs2.Unity.Gs2Inventory.Model;
using UnityEngine.Events;

namespace Gs2.Weave.Core.CallbackEvent
{
    [Serializable]
    public class GetInventoryModelEvent : UnityEvent<string, EzInventoryModel, List<EzItemModel>>
    {
    }

    [Serializable]
    public class GetInventoryEvent : UnityEvent<EzInventory, List<EzItemSet>>
    {
    }

    [Serializable]
    public class AcquireEvent : UnityEvent<EzInventory, List<EzItemSet>, int>
    {
    }

    [Serializable]
    public class ConsumeEvent : UnityEvent<EzInventory, List<EzItemSet>, int>
    {
    }

}