11 lines
339 B
C#
11 lines
339 B
C#
#nullable enable
|
|
using Content.Server.GameObjects.Components.NodeContainer.NodeGroups;
|
|
|
|
namespace Content.Server.GameObjects.Components.Power.PowerNetComponents
|
|
{
|
|
public abstract class BasePowerNetComponent : BaseNetConnectorComponent<IPowerNet>
|
|
{
|
|
protected override IPowerNet NullNet => PowerNetNodeGroup.NullNet;
|
|
}
|
|
}
|