mirror of
https://github.com/ConjureETS/Unity_Utils.git
synced 2026-03-24 04:50:58 +00:00
11 lines
171 B
C#
11 lines
171 B
C#
using System;
|
|
|
|
namespace Util.CustomTypes
|
|
{
|
|
[Serializable]
|
|
public struct RangedFloat
|
|
{
|
|
public float minValue;
|
|
public float maxValue;
|
|
}
|
|
} |