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

17 lines
541 B
C#

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