Files
crystall-punk-14/Content.Server/_CP14/StealArea/CP14StealAreaAutoJobConnectComponent.cs
Ed c21dd891f3 Endscreen message + command objectives updadte (#533)
* add simple end screen common goals

* finish common objectives endscreen

* personal objectives endscreen

* Update personal_objectives.yml

* new empire objectives
2024-11-04 13:41:09 +03:00

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;
}