Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: VigersRay <60344369+VigersRay@users.noreply.github.com> Co-authored-by: Vigers Ray <vigersray@gmail.com>
12 lines
296 B
C#
12 lines
296 B
C#
namespace Content.Shared.EnergyDome;
|
|
|
|
/// <summary>
|
|
/// marker component that allows linking the dome generator with the dome itself
|
|
/// </summary>
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class EnergyDomeProtectedUserComponent : Component
|
|
{
|
|
[DataField]
|
|
public EntityUid? DomeEntity;
|
|
}
|