unity-atoms/Packages/Core/Runtime/References/FloatReference.cs
2019-10-15 22:29:05 +02:00

13 lines
288 B
C#

using System;
namespace UnityAtoms
{
/// <summary>
/// Reference of type `float`. Inherits from `AtomReference&lt;float, FloatVariable&gt;`.
/// </summary>
[Serializable]
public sealed class FloatReference : AtomReference<
float,
FloatVariable> { }
}