namespace Content.Server.EnergyDome; /// /// marker component that allows linking the dome generator with the dome itself /// [RegisterComponent, Access(typeof(EnergyDomeSystem))] public sealed partial class EnergyDomeComponent : Component { /// /// A linked generator that uses energy /// [DataField] public EntityUid? Generator; }