2025-05-18 03:10:30 +10:00
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
2024-07-03 22:23:11 +10:00
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Runs cables throughout the dungeon.
|
|
|
|
|
/// </summary>
|
2025-05-18 03:10:30 +10:00
|
|
|
public sealed partial class AutoCablingDunGen : IDunGenLayer
|
|
|
|
|
{
|
|
|
|
|
[DataField(required: true)]
|
|
|
|
|
public EntProtoId Entity;
|
|
|
|
|
}
|