16 lines
418 B
C#
16 lines
418 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._White._Engi.StationGoal
|
|
{
|
|
/// <summary>
|
|
/// WD.
|
|
/// If attached to a station prototype, will send the station a random goal from the list.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class StationGoalComponent : Component
|
|
{
|
|
[DataField]
|
|
public List<ProtoId<StationGoalPrototype>> Goals = new();
|
|
}
|
|
}
|