| 1234567891011121314 |
- using Content.Shared.Dataset;
- using Robust.Shared.Prototypes;
- using Robust.Shared.Serialization;
- namespace Content.Shared.Damage.Events;
- /// <summary>
- /// Event for interrupting and changing the prefix for when an entity is being forced to say something
- /// </summary>
- [Serializable, NetSerializable]
- public sealed class BeforeForceSayEvent(ProtoId<LocalizedDatasetPrototype> prefixDataset) : EntityEventArgs
- {
- public ProtoId<LocalizedDatasetPrototype> Prefix = prefixDataset;
- }
|