Files
OldThink/Content.Server/Power/NodeGroups/IBasePowerNet.cs

15 lines
341 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);
PowerState.Network NetworkNode { get; }
}
}