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