mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-21 07:28:31 +03:00
12 lines
239 B
C#
12 lines
239 B
C#
namespace Content.Server._White.AspectsSystem.Aspects.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class PresentAspectComponent : Component
|
|
{
|
|
[DataField]
|
|
public int Min = 150;
|
|
|
|
[DataField]
|
|
public int Max = 200;
|
|
}
|