fish-station/Content.Shared/EnergyDome/EnergyDomeProtectedUserComponent.cs
Copilot 5c5900f367
Запретить активацию и автоматически отключать энергетический щит в контейнерах (#2997)
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>
2025-09-10 02:46:20 +03:00

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;
}