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