Files
OldThink/Content.Server/GameObjects/Components/Power/ApcNetComponents/BaseApcNetComponent.cs

10 lines
315 B
C#
Raw Normal View History

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;
}
}