mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-14 19:29:53 +01:00
20 lines
418 B
C#
20 lines
418 B
C#
namespace Content.Client.PDA;
|
|
|
|
/// <summary>
|
|
/// Used for specifying the pda windows border colors
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class PdaBorderColorComponent : Component
|
|
{
|
|
[DataField("borderColor", required: true)]
|
|
public string? BorderColor;
|
|
|
|
|
|
[DataField("accentHColor")]
|
|
public string? AccentHColor;
|
|
|
|
|
|
[DataField("accentVColor")]
|
|
public string? AccentVColor;
|
|
}
|