mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
17 lines
473 B
C#
17 lines
473 B
C#
using System;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Event Reference of type `float`. Inherits from `AtomEventReference<float, FloatVariable, FloatEvent, FloatVariableInstancer, FloatEventInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class FloatEventReference : AtomEventReference<
|
|
float,
|
|
FloatVariable,
|
|
FloatEvent,
|
|
FloatVariableInstancer,
|
|
FloatEventInstancer>, IGetEvent
|
|
{ }
|
|
}
|