Files
OldThink/Content.Server/UserInterface/ActivatableUIRequiresPowerCellComponent.cs

15 lines
368 B
C#
Raw Normal View History

2023-04-23 12:25:12 +10:00
using Content.Server.PowerCell;
using Content.Shared.PowerCell;
2023-04-23 12:25:12 +10:00
using Content.Shared.UserInterface;
namespace Content.Server.UserInterface;
/// <summary>
/// Specifies that the attached entity requires <see cref="PowerCellDrawComponent"/> power.
/// </summary>
[RegisterComponent]
public sealed partial class ActivatableUIRequiresPowerCellComponent : Component
2023-04-23 12:25:12 +10:00
{
}