unity-atoms/Packages/Core/Runtime/References/FloatReference.cs
2019-10-02 17:36:20 +02:00

10 lines
157 B
C#

using System;
namespace UnityAtoms
{
[Serializable]
public sealed class FloatReference : AtomReference<
float,
FloatVariable> { }
}