Delta-v/Content.Shared/_DV/CosmicCult/CosmicCultExamineComponent.cs

15 lines
441 B
C#

namespace Content.Shared._DV.CosmicCult;
/// <summary>
/// Event dispatched from shared into server code where something creates another thing that should be associated with the gamerule
/// </summary>
[RegisterComponent]
public sealed partial class CosmicCultExamineComponent : Component
{
[DataField(required: true)]
public LocId CultistText;
[DataField]
public LocId OthersText = "cosmic-examine-text-structures";
}