14 lines
238 B
C#
14 lines
238 B
C#
|
|
using Robust.Shared.ViewVariables;
|
|||
|
|
|
|||
|
|
namespace Content.Server.GameObjects.Components.Destructible
|
|||
|
|
{
|
|||
|
|
public struct MinMax
|
|||
|
|
{
|
|||
|
|
[ViewVariables]
|
|||
|
|
public int Min;
|
|||
|
|
|
|||
|
|
[ViewVariables]
|
|||
|
|
public int Max;
|
|||
|
|
}
|
|||
|
|
}
|