21 lines
410 B
C#
21 lines
410 B
C#
namespace Content.Shared.NodeContainer.NodeGroups;
|
|
|
|
public enum NodeGroupID : byte
|
|
{
|
|
Default,
|
|
HVPower,
|
|
MVPower,
|
|
Apc,
|
|
AMEngine,
|
|
Pipe,
|
|
WireNet,
|
|
|
|
/// <summary>
|
|
/// Group used by the TEG.
|
|
/// </summary>
|
|
/// <seealso cref="Content.Server.Power.Generation.Teg.TegSystem"/>
|
|
/// <seealso cref="Content.Server.Power.Generation.Teg.TegNodeGroup"/>
|
|
Teg,
|
|
ExCable,
|
|
}
|