unity-atoms/Source/References/FloatReference.cs
2019-09-25 21:05:06 +02:00

11 lines
161 B
C#

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