mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 00:34:44 +01:00
* cleanup * fix fixtures * prediction * fix test * review * fix svalinn visuals * fix chargers * fix portable recharger and its unlit visuals * fix borgs * oomba review * fix examination prediction
11 lines
386 B
C#
11 lines
386 B
C#
using Content.Shared.PowerCell.Components;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.UserInterface;
|
|
|
|
/// <summary>
|
|
/// Specifies that the attached entity requires <see cref="PowerCellDrawComponent"/> power to open the activatable UI.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class ActivatableUIRequiresPowerCellComponent : Component;
|