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