mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-23 16:48:10 +03:00
14 lines
236 B
C#
14 lines
236 B
C#
namespace Content.Server.Destructible.Thresholds
|
|
{
|
|
[Serializable]
|
|
[DataDefinition]
|
|
public struct MinMax
|
|
{
|
|
[DataField("min")]
|
|
public int Min;
|
|
|
|
[DataField("max")]
|
|
public int Max;
|
|
}
|
|
}
|