Files
crystall-punk-14/Content.Shared/Power/SharedPowerChargeComponent.cs

15 lines
410 B
C#
Raw Permalink Normal View History

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