mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
19 lines
464 B
C#
19 lines
464 B
C#
using Content.Server.Power.Components;
|
|
using Content.Server.Power.Pow3r;
|
|
|
|
namespace Content.Server.Power.NodeGroups
|
|
{
|
|
public interface IBasePowerNet
|
|
{
|
|
void AddConsumer(PowerConsumerComponent consumer);
|
|
|
|
void RemoveConsumer(PowerConsumerComponent consumer);
|
|
|
|
void AddSupplier(PowerSupplierComponent supplier);
|
|
|
|
void RemoveSupplier(PowerSupplierComponent supplier);
|
|
|
|
PowerState.Network NetworkNode { get; }
|
|
}
|
|
}
|