13 lines
288 B
C#
13 lines
288 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
/// <summary>
|
|
/// Runs cables throughout the dungeon.
|
|
/// </summary>
|
|
public sealed partial class AutoCablingPostGen : IPostDunGen
|
|
{
|
|
[DataField]
|
|
public EntProtoId Entity = "CableApcExtension";
|
|
}
|