Files
crystall-punk-14/Content.Shared/_CP14/NightVision/CP14NightVisionComponent.cs
Ed 52e6e9b28f Carcat night vision (#1046)
* carcat night vision

* Update nightVision.yml
2025-03-21 16:53:59 +03:00

21 lines
510 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
namespace Content.Shared._CP14.NightVision;
[RegisterComponent, NetworkedComponent]
public sealed partial class CP14NightVisionComponent : Component
{
[DataField]
public EntityUid? LocalLightEntity = null;
[DataField]
public EntProtoId LightPrototype = "CP14NightVisionLight";
[DataField]
public EntProtoId ActionPrototype = "CP14ActionToggleNightVision";
[DataField]
public EntityUid? ActionEntity = null;
}