unity-atoms/Packages/BaseAtoms/Runtime/EventReferences/IntPairEventReference.cs

17 lines
481 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
using System;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Event Reference of type `IntPair`. Inherits from `AtomEventReference&lt;IntPair, IntVariable, IntPairEvent, IntVariableInstancer, IntPairEventInstancer&gt;`.
/// </summary>
[Serializable]
public sealed class IntPairEventReference : AtomEventReference<
IntPair,
IntVariable,
IntPairEvent,
IntVariableInstancer,
IntPairEventInstancer>, IGetEvent
{ }
}