10 lines
325 B
C#
10 lines
325 B
C#
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;
|
|
}
|
|
}
|