14 lines
328 B
C#
14 lines
328 B
C#
using Content.Server.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
|
|
{
|
|
|
|
}
|