mirror of
https://github.com/wega-team/ss14-wega.git
synced 2026-02-14 19:30:01 +01:00
18 lines
438 B
C#
18 lines
438 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Station;
|
|
|
|
/// <summary>
|
|
/// A config for a station. Specifies name and component modifications.
|
|
/// </summary>
|
|
[DataDefinition]
|
|
public sealed partial class StationConfig
|
|
{
|
|
[DataField("stationProto", required: true)]
|
|
public EntProtoId StationPrototype;
|
|
|
|
[DataField("components", required: true)]
|
|
public ComponentRegistry StationComponentOverrides = default!;
|
|
}
|
|
|