* add simple end screen common goals * finish common objectives endscreen * personal objectives endscreen * Update personal_objectives.yml * new empire objectives
21 lines
475 B
C#
21 lines
475 B
C#
using Content.Shared.Roles;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._CP14.StealArea;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[RegisterComponent, AutoGenerateComponentPause]
|
|
public sealed partial class CP14StealAreaAutoJobConnectComponent : Component
|
|
{
|
|
[DataField]
|
|
public HashSet<ProtoId<JobPrototype>> Jobs = new();
|
|
|
|
[DataField]
|
|
public HashSet<ProtoId<DepartmentPrototype>> Departments = new();
|
|
|
|
[DataField]
|
|
public bool Stations = true;
|
|
}
|