10 lines
315 B
C#
10 lines
315 B
C#
using Content.Server.GameObjects.Components.NodeContainer.NodeGroups;
|
|
|
|
namespace Content.Server.GameObjects.Components.Power.ApcNetComponents
|
|
{
|
|
public abstract class BaseApcNetComponent : BaseNetConnectorComponent<IApcNet>
|
|
{
|
|
protected override IApcNet NullNet => ApcNetNodeGroup.NullNet;
|
|
}
|
|
}
|