Files
tbd-station-14/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs
2023-05-14 13:15:18 +10:00

15 lines
360 B
C#

using Content.Server.PowerCell;
using Content.Shared.PowerCell;
using Content.Shared.UserInterface;
namespace Content.Server.UserInterface;
/// <summary>
/// Specifies that the attached entity requires <see cref="PowerCellDrawComponent"/> power.
/// </summary>
[RegisterComponent]
public sealed class ActivatableUIRequiresPowerCellComponent : Component
{
}