Files
crystall-punk-14/Content.Server/Power/NodeGroups/IBasePowerNet.cs

19 lines
464 B
C#
Raw Normal View History

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);
2023-08-25 20:40:42 +02:00
void AddSupplier(PowerSupplierComponent supplier);
void RemoveSupplier(PowerSupplierComponent supplier);
PowerState.Network NetworkNode { get; }
}
}