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