2023-04-25 20:23:14 -04:00
|
|
|
|
using Content.Server.StationEvents.Events;
|
2022-02-25 23:10:09 -06:00
|
|
|
|
|
2023-04-25 20:23:14 -04:00
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, Access(typeof(RandomSentienceRule))]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class SentienceTargetComponent : Component
|
2022-02-25 23:10:09 -06:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("flavorKind", required: true)]
|
|
|
|
|
|
public string FlavorKind = default!;
|
|
|
|
|
|
}
|