unity-atoms/Packages/Core/Runtime/References/FloatReference.cs
2019-10-01 17:27:22 +02:00

11 lines
161 B
C#

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