1
0

SharedPowerChargeComponent.cs 410 B

1234567891011121314
  1. namespace Content.Shared.Power;
  2. /// <summary>
  3. /// Component for a powered machine that slowly powers on and off over a period of time.
  4. /// </summary>
  5. public abstract partial class SharedPowerChargeComponent : Component
  6. {
  7. /// <summary>
  8. /// The title used for the default charged machine window if used
  9. /// </summary>
  10. [DataField]
  11. public LocId WindowTitle { get; set; } = string.Empty;
  12. }