mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 23:17:43 +03:00
* All tweaks * Update salvage.yml Signed-off-by: VMSolidus <evilexecutive@gmail.com> --------- Signed-off-by: VMSolidus <evilexecutive@gmail.com>
16 lines
545 B
C#
16 lines
545 B
C#
using Content.Server.StationEvents.Events;
|
|
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent, Access(typeof(PirateRadioSpawnRule))]
|
|
public sealed partial class PirateRadioSpawnRuleComponent : Component
|
|
{
|
|
[DataField("PirateRadioShuttlePath")]
|
|
public string PirateRadioShuttlePath = "Maps/Shuttles/DeltaV/DV-pirateradio.yml";
|
|
|
|
[DataField("additionalRule")]
|
|
public EntityUid? AdditionalRule;
|
|
}
|