canto/Assets/Scripts/Item/Atoms/EventInstancers/ItemEventInstancer.cs
2025-10-02 15:28:03 -04:00

12 lines
433 B
C#

using UnityEngine;
using KitsuneCafe.ItemSystem;
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
{
/// <summary>
/// Event Instancer of type `Item`. Inherits from `AtomEventInstancer&lt;Item, ItemEvent&gt;`.
/// </summary>
[EditorIcon("atom-icon-sign-blue")]
[AddComponentMenu("Unity Atoms/Event Instancers/Item Event Instancer")]
public class ItemEventInstancer : AtomEventInstancer<Item, ItemEvent> { }
}