// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Game.Networking.Broadcasting;
public interface IBroadcastRule
{
///
/// Tells whether or not the given session matches a broadcasting rule
///
///
/// true if the session should receive the packet
bool Match(IClientSession session);
}