Files
f7ea87fb8ebd197ba9796838cb90ac8bab5aeb50
15 lines
489 B
C#
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;
|
|||
}
|