2021-07-04 18:11:52 +02:00
|
|
|
using Content.Server.Power.NodeGroups;
|
2020-06-28 09:23:26 -06:00
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Server.Power.Components
|
2020-06-28 09:23:26 -06:00
|
|
|
{
|
2021-10-25 16:21:56 +02:00
|
|
|
public interface IBasePowerNetComponent : IBaseNetConnectorComponent<IPowerNet>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class BasePowerNetComponent : BaseNetConnectorComponent<IPowerNet>
|
2020-06-28 09:23:26 -06:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|