namespace Content.Shared.Power; /// /// Component for a powered machine that slowly powers on and off over a period of time. /// public abstract partial class SharedPowerChargeComponent : Component { /// /// The title used for the default charged machine window if used /// [DataField] public LocId WindowTitle { get; set; } = string.Empty; }