12 lines
115 B
C#
12 lines
115 B
C#
|
using System;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
[Serializable]
|
||
|
public struct RangeFloat
|
||
|
{
|
||
|
public float min;
|
||
|
|
||
|
public float max;
|
||
|
}
|