12 lines
347 B
C#
12 lines
347 B
C#
using System;
|
|
using UnityEngine.Events;
|
|
using KitsuneCafe.ItemSystem;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
|
|
{
|
|
/// <summary>
|
|
/// None generic Unity Event of type `ItemPair`. Inherits from `UnityEvent<ItemPair>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class ItemPairUnityEvent : UnityEvent<ItemPair> { }
|
|
}
|