Files
14 lines
352 B
C#
14 lines
352 B
C#
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
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
|
||
|
|
{
|
||
|
|||
}
|