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