Unity_Utils/CustomTypes/RangedFloat.cs
Martin 49d2952bf8 Added meta files and remove bad namespaces
Will add better namespaces later
2020-04-29 23:10:02 -04:00

8 lines
116 B
C#

using System;
[Serializable]
public struct RangedFloat
{
public float minValue;
public float maxValue;
}