6
StarHorizon_Public/Content.Shared/UserInterface/ActivatableUIRequiresPowerCellComponent.cs
2026-01-18 12:53:36 +03:00

14 lines
352 B
C#

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