Files
tbd-station-14/Content.Server/StationEvents/Components/RevenantSpawnRuleComponent.cs
2023-04-24 15:20:51 +10:00

11 lines
307 B
C#

using Content.Server.StationEvents.Events;
namespace Content.Server.StationEvents.Components;
[RegisterComponent, Access(typeof(RevenantSpawnRule))]
public sealed class RevenantSpawnRuleComponent : Component
{
[DataField("revenantPrototype")]
public string RevenantPrototype = "MobRevenant";
}