2024-03-04 09:32:33 +03:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2023-06-27 19:17:42 +10:00
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Runs cables throughout the dungeon.
|
|
|
|
|
/// </summary>
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class AutoCablingPostGen : IPostDunGen
|
2023-06-27 19:17:42 +10:00
|
|
|
{
|
2024-03-04 09:32:33 +03:00
|
|
|
[DataField]
|
|
|
|
|
public EntProtoId Entity = "CableApcExtension";
|
2023-06-27 19:17:42 +10:00
|
|
|
}
|