mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-31 04:12:52 -05:00
17 lines
517 B
C#
17 lines
517 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Event Reference of type `DoublePair`. Inherits from `AtomEventReference<DoublePair, DoubleVariable, DoublePairEvent, DoubleVariableInstancer, DoublePairEventInstancer>`.
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public sealed class DoublePairEventReference : AtomEventReference<
|
||
|
DoublePair,
|
||
|
DoubleVariable,
|
||
|
DoublePairEvent,
|
||
|
DoubleVariableInstancer,
|
||
|
DoublePairEventInstancer>, IGetEvent
|
||
|
{ }
|
||
|
}
|