/// <summary> /// Creates a closed bound that includes the specified value. /// </summary> /// <param name="value">The bound's value.</param> public FInt32RangeBound(int value) { Type = ERangeBoundTypes.Inclusive; Value = value; }
/// <summary> /// Creates a closed bound that includes the specified value. /// </summary> /// <param name="value">The bound's value.</param> public FFloatRangeBound(float value) { Type = ERangeBoundTypes.Inclusive; Value = value; }