29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
namespace Content.Client.Power.SMES;
|
|
|
|
[RegisterComponent]
|
|
public sealed class SmesComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// The prefix used for the RSI states of the sprite layers indicating the charge level of the SMES.
|
|
/// </summary>
|
|
[DataField("chargeOverlayPrefix")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string ChargeOverlayPrefix = "smes-og";
|
|
|
|
/// <summary>
|
|
/// The prefix used for the RSI states of the sprite layers indicating the input state of the SMES.
|
|
/// Actually bundled together with the output indicator light.
|
|
/// </summary>
|
|
[DataField("inputOverlayPrefix")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string InputOverlayPrefix = "smes-oc";
|
|
|
|
/// <summary>
|
|
/// The prefix used for the RSI states of the sprite layers indicating the output state of the SMES.
|
|
/// Actually bundled together with the input indicator light.
|
|
/// </summary>
|
|
[DataField("outputOverlayPrefix")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string OutputOverlayPrefix = "smes-op";
|
|
}
|