20 lines
644 B
C#
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<ItemVariable, ItemPair, Item, ItemEvent, ItemPairEvent, ItemItemFunction>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-hotpink")]
|
|
[AddComponentMenu("Unity Atoms/Variable Instancers/Item Variable Instancer")]
|
|
public class ItemVariableInstancer : AtomVariableInstancer<
|
|
ItemVariable,
|
|
ItemPair,
|
|
Item,
|
|
ItemEvent,
|
|
ItemPairEvent,
|
|
ItemItemFunction>
|
|
{ }
|
|
}
|