using Robust.Shared.Prototypes;
namespace Content.Server.Ghost.Roles.Components
{
/// <summary>
/// Allows a ghost to take this role, spawning a new entity.
/// </summary>
[RegisterComponent]
[Access(typeof(GhostRoleSystem))]
public sealed partial class GhostRoleMobSpawnerComponent : Component
[DataField]
public bool DeleteOnSpawn = true;
public int AvailableTakeovers = 1;
[ViewVariables]
public int CurrentTakeovers = 0;
public EntProtoId? Prototype;
/// If this ghostrole spawner has multiple selectable ghostrole prototypes.
public List<string> SelectablePrototypes = [];
}