using Robust.Shared.Prototypes;
namespace Content.Shared.EntityTable.EntitySelectors;
///
/// Selects nothing.
///
public sealed partial class NoneSelector : EntityTableSelector
{
protected override IEnumerable GetSpawnsImplementation(System.Random rand,
IEntityManager entMan,
IPrototypeManager proto)
{
yield break;
}
}