mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
* content * catwalks * fix fucking icons * finish PR * +1 room * fix (cherry picked from commit ace82854406631bad58cd731899fc8e20ef21e65)
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";
|
|
}
|