11 lines
378 B
C#
11 lines
378 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared._White.Overlays;
|
||
|
|
|
||
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
||
|
|
public sealed partial class TemporaryThermalVisionComponent : BaseNvOverlayComponent
|
||
|
|
{
|
||
|
|
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
|
||
|
|
public override Color Color { get; set; } = Color.FromHex("#FB9898");
|
||
|
|
}
|