Files
crystall-punk-14/Content.Server/_CP14/StationCommonObjectives/CP14StationCommonObjectivesComponent.cs

12 lines
391 B
C#
Raw Permalink Normal View History

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