6
2026-01-24 12:49:55 +03:00

15 lines
489 B
C#

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;
}