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

20 lines
644 B
C#

using UnityEngine;
using UnityAtoms.BaseAtoms;
using KitsuneCafe.ItemSystem;
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
{
/// <summary>
/// Variable Instancer of type `Item`. Inherits from `AtomVariableInstancer&lt;ItemVariable, ItemPair, Item, ItemEvent, ItemPairEvent, ItemItemFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-hotpink")]
[AddComponentMenu("Unity Atoms/Variable Instancers/Item Variable Instancer")]
public class ItemVariableInstancer : AtomVariableInstancer<
ItemVariable,
ItemPair,
Item,
ItemEvent,
ItemPairEvent,
ItemItemFunction>
{ }
}