15 lines
322 B
C#
15 lines
322 B
C#
using Content.Server.Power.NodeGroups;
|
|
using Content.Server.Power.Components;
|
|
|
|
namespace Content.Server._NF.Power.Components;
|
|
|
|
/// <summary>
|
|
/// Marks an entity as capable of using both APC and battery power.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class MixedPowerReceiverComponent : Component
|
|
{
|
|
|
|
}
|
|
|