2024-08-09 22:12:40 -04:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.EntityTable.EntitySelectors;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Selects nothing.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed partial class NoneSelector : EntityTableSelector
|
|
|
|
|
{
|
|
|
|
|
protected override IEnumerable<EntProtoId> GetSpawnsImplementation(System.Random rand,
|
|
|
|
|
IEntityManager entMan,
|
2025-05-31 09:40:25 -04:00
|
|
|
IPrototypeManager proto,
|
|
|
|
|
EntityTableContext ctx)
|
2024-08-09 22:12:40 -04:00
|
|
|
{
|
|
|
|
|
yield break;
|
|
|
|
|
}
|
|
|
|
|
}
|