11 lines
312 B
C#
11 lines
312 B
C#
using Content.Server.StationEvents.Events;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent, Access(typeof(RandomSentienceRule))]
|
|
public sealed partial class SentienceTargetComponent : Component
|
|
{
|
|
[DataField("flavorKind", required: true)]
|
|
public string FlavorKind = default!;
|
|
}
|