using Content.Shared.Dataset; using Robust.Shared.Prototypes; namespace Content.Server.Chat; /// /// Entity will say the things when activated /// [RegisterComponent] public sealed partial class SpeakOnUseComponent : Component { /// /// The identifier for the dataset prototype containing messages to be spoken by this entity. /// [DataField(required: true)] public ProtoId Pack { get; private set; } }