24 lines
928 B
C#
24 lines
928 B
C#
// SPDX-FileCopyrightText: 2025 Aiden <28298836+Aidenkrz@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 Aviu00 <93730715+Aviu00@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 Misandry <mary@thughunt.ing>
|
|
// SPDX-FileCopyrightText: 2025 Spatison <137375981+Spatison@users.noreply.github.com>
|
|
// SPDX-FileCopyrightText: 2025 gus <august.eymann@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
using Content.Shared.Actions;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._Goobstation.Overlays;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class NightVisionComponent : SwitchableVisionOverlayComponent
|
|
{
|
|
public override EntProtoId? ToggleAction { get; set; } = "ToggleNightVision";
|
|
|
|
public override Color Color { get; set; } = Color.FromHex("#98FB98");
|
|
}
|
|
|
|
public sealed partial class ToggleNightVisionEvent : InstantActionEvent;
|