2024-07-19 16:27:01 +00:00
|
|
|
using Content.Shared.Actions;
|
|
|
|
|
using Robust.Shared.Audio;
|
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared._White.Overlays;
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
2024-07-21 11:30:47 +00:00
|
|
|
public sealed partial class ThermalVisionComponent : BaseEnhancedVisionComponent
|
2024-07-19 16:27:01 +00:00
|
|
|
{
|
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
|
|
|
|
|
public override Color Color { get; set; } = Color.FromHex("#F84742");
|
|
|
|
|
|
2024-07-20 05:08:01 +03:00
|
|
|
[DataField]
|
2024-07-21 11:30:47 +00:00
|
|
|
public override EntProtoId? ToggleAction { get; set; } = "ToggleThermalVision";
|
2024-07-19 16:27:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public sealed partial class ToggleThermalVisionEvent : InstantActionEvent
|
|
|
|
|
{
|
|
|
|
|
}
|