Files
crystall-punk-14/Content.Server/_CP14/StationCommonObjectives/CP14StationCommonObjectivesComponent.cs
Ed 85463d380f Bank preparation (#499)
* TownSend condition

* personal objectives update

* add common objectives

* add common objectives

* tweaks

* quartermaster and merchant

* job spawner icons

* add merchants to tavern map
2024-10-20 21:20:16 +03:00

12 lines
391 B
C#

using Content.Shared.Roles;
using Robust.Shared.Prototypes;
namespace Content.Server._CP14.StationCommonObjectives;
[RegisterComponent]
public sealed partial class CP14StationCommonObjectivesComponent : Component
{
public Dictionary<EntityUid, ProtoId<JobPrototype>> JobObjectives = new();
public Dictionary<EntityUid, ProtoId<DepartmentPrototype>> DepartmentObjectives = new();
}