using Content.Shared.Actions;
namespace Content.Shared.VoiceMask;
public sealed partial class VoiceMaskSetNameEvent : InstantActionEvent
{
}
///
/// Raised on an entity when their voice masks name is updated
///
/// Uid of the voice mask
/// The old name
/// The new name
[ByRefEvent]
public readonly record struct VoiceMaskNameUpdatedEvent(EntityUid VoiceMaskUid, string? OldName, string NewName);