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

17 lines
509 B
C#

using System;
using KitsuneCafe.ItemSystem;
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
{
/// <summary>
/// Event Reference of type `Item`. Inherits from `AtomEventReference&lt;Item, ItemVariable, ItemEvent, ItemVariableInstancer, ItemEventInstancer&gt;`.
/// </summary>
[Serializable]
public sealed class ItemEventReference : AtomEventReference<
Item,
ItemVariable,
ItemEvent,
ItemVariableInstancer,
ItemEventInstancer>, IGetEvent
{ }
}