2024-10-20 19:42:12 +03:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server._White._Engi.StationGoal
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2024-11-24 21:44:35 +03:00
|
|
|
/// WD.
|
2024-10-20 19:42:12 +03:00
|
|
|
/// 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();
|
|
|
|
|
}
|
|
|
|
|
}
|