Files
OldThink/Content.Server/_White/_Engi/StationGoalCommand/StationGoalComponent.cs
2024-11-24 21:44:35 +03:00

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