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

14 lines
536 B
C#

using UnityEngine;
using KitsuneCafe.ItemSystem;
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
{
/// <summary>
/// Variable of type `Item`. Inherits from `EquatableAtomVariable&lt;Item, ItemPair, ItemEvent, ItemPairEvent, ItemItemFunction&gt;`.
/// </summary>
[EditorIcon("atom-icon-lush")]
[CreateAssetMenu(menuName = "Unity Atoms/Variables/Item", fileName = "ItemVariable")]
public sealed class ItemVariable : EquatableAtomVariable<Item, ItemPair, ItemEvent, ItemPairEvent, ItemItemFunction>
{
}
}