Files
crystall-punk-14/Content.Shared/Procedural/PostGeneration/AutoCablingPostGen.cs

13 lines
288 B
C#
Raw Normal View History

using Robust.Shared.Prototypes;
2023-06-27 19:17:42 +10:00
namespace Content.Shared.Procedural.PostGeneration;
/// <summary>
/// Runs cables throughout the dungeon.
/// </summary>
public sealed partial class AutoCablingPostGen : IPostDunGen
2023-06-27 19:17:42 +10:00
{
[DataField]
public EntProtoId Entity = "CableApcExtension";
2023-06-27 19:17:42 +10:00
}