Unity_Utils/CustomTypes/RangedFloat.cs
2020-04-29 22:08:44 -04:00

11 lines
171 B
C#

using System;
namespace Util.CustomTypes
{
[Serializable]
public struct RangedFloat
{
public float minValue;
public float maxValue;
}
}