2024-03-14 01:19:30 +09:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._White.Overlays;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
2024-07-19 16:27:01 +00:00
|
|
|
public sealed partial class TemporaryNightVisionComponent : BaseNvOverlayComponent
|
2024-03-14 01:19:30 +09:00
|
|
|
{
|
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
|
2024-07-19 16:27:01 +00:00
|
|
|
public override Color Color { get; set; } = Color.FromHex("#FB9898");
|
2024-03-14 01:19:30 +09:00
|
|
|
}
|