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

10 lines
198 B
C#
Raw Normal View History

#nullable enable
using Content.Server.Power.NodeGroups;
namespace Content.Server.Power.Components
{
public abstract class BaseApcNetComponent : BaseNetConnectorComponent<IApcNet>
{
}
}