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