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