using Content.Shared.DeviceNetwork.Components;
namespace Content.Shared.DeviceNetwork.Events;
///
/// Sent to the sending entity before broadcasting network packets to recipients
///
public sealed class BeforeBroadcastAttemptEvent : CancellableEntityEventArgs
{
public readonly IReadOnlySet Recipients;
public HashSet? ModifiedRecipients;
public BeforeBroadcastAttemptEvent(IReadOnlySet recipients)
{
Recipients = recipients;
}
}