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

11 lines
329 B
C#
Raw Normal View History

#nullable enable
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;
}
}