12 lines
391 B
C#
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();
|
||
|
|
}
|