mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
15 lines
392 B
C#
15 lines
392 B
C#
using Content.Server.NodeContainer.NodeGroups;
|
|
using Content.Shared.NodeContainer.NodeGroups;
|
|
using Content.Server.Power.Components;
|
|
using Content.Server.Power.EntitySystems;
|
|
|
|
namespace Content.Server.ExCable;
|
|
|
|
/// <summary>
|
|
/// Dummy Node group class for handling the explosive cables.
|
|
/// </summary>
|
|
[NodeGroup(NodeGroupID.ExCable)]
|
|
public sealed class ExCableNodeGroup : BaseNodeGroup
|
|
{
|
|
}
|