Files
crystall-punk-14/Content.Server/StationEvents/Components/RandomSentienceRuleComponent.cs

14 lines
327 B
C#
Raw Permalink Normal View History

using Content.Server.StationEvents.Events;
2023-04-25 20:23:14 -04:00
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(RandomSentienceRule))]
public sealed partial class RandomSentienceRuleComponent : Component
2023-04-25 20:23:14 -04:00
{
[DataField]
public int MinSentiences = 1;
2023-04-25 20:23:14 -04:00
[DataField]
public int MaxSentiences = 1;
2023-04-25 20:23:14 -04:00
}