using Content.Shared.Whitelist;
namespace Content.Server.Spawners.Components;
///
/// Defines whitelist and blacklist for entities that can spawn at a spawnpoint when they are spawned via the
///
[RegisterComponent]
public sealed partial class GridSpawnPointWhitelistComponent : Component
{
///
/// Whitelist of entities that can be spawned at this SpawnPoint
///
[DataField]
public EntityWhitelist? Whitelist;
///
/// Whitelist of entities that can't be spawned at this SpawnPoint
///
[DataField]
public EntityWhitelist? Blacklist;
}