12 lines
461 B
C#
12 lines
461 B
C#
using UnityEngine;
|
|
using KitsuneCafe.ItemSystem;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
|
|
{
|
|
/// <summary>
|
|
/// Event Instancer of type `ItemPair`. Inherits from `AtomEventInstancer<ItemPair, ItemPairEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-sign-blue")]
|
|
[AddComponentMenu("Unity Atoms/Event Instancers/ItemPair Event Instancer")]
|
|
public class ItemPairEventInstancer : AtomEventInstancer<ItemPair, ItemPairEvent> { }
|
|
}
|