15 lines
330 B
C#
15 lines
330 B
C#
using Content.Server.NodeContainer.NodeGroups;
|
|
using Content.Server.Power.NodeGroups;
|
|
|
|
namespace Content.Server.Power.Components
|
|
{
|
|
public interface IBasePowerNetComponent : IBaseNetConnectorComponent<IPowerNet>
|
|
{
|
|
|
|
}
|
|
|
|
public abstract class BasePowerNetComponent : BaseNetConnectorComponent<IPowerNet>
|
|
{
|
|
}
|
|
}
|