Files
tbd-station-14/Content.Server/Destructible/Thresholds/MinMax.cs

14 lines
244 B
C#

namespace Content.Server.Destructible.Thresholds
{
[Serializable]
[DataDefinition]
public partial struct MinMax
{
[DataField("min")]
public int Min;
[DataField("max")]
public int Max;
}
}