Files
OldThink/Content.Server/StationEvents/Components/SentienceTargetComponent.cs

11 lines
312 B
C#
Raw Permalink Normal View History

2023-04-25 20:23:14 -04:00
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 SentienceTargetComponent : Component
{
[DataField("flavorKind", required: true)]
public string FlavorKind = default!;
}