mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 23:48:15 +03:00
12 lines
238 B
C#
12 lines
238 B
C#
namespace Content.Server._White.AspectsSystem.Aspects.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class LandmineAspectComponent : Component
|
|
{
|
|
[DataField]
|
|
public int Min = 40;
|
|
|
|
[DataField]
|
|
public int Max = 60;
|
|
}
|