mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 05:50:54 +01:00
9 lines
223 B
C#
9 lines
223 B
C#
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent]
|
|
public sealed class SentienceTargetComponent : Component
|
|
{
|
|
[DataField("flavorKind", required: true)]
|
|
public string FlavorKind = default!;
|
|
}
|