6
2026-01-24 12:49:55 +03:00

14 lines
478 B
C#

using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Shared._Horizon.NightVision;
[RegisterComponent]
[NetworkedComponent]
public sealed partial class PNVComponent : Component
{
[DataField(customTypeSerializer: typeof(PrototypeIdSerializer<EntityPrototype>))] public string ActionProto = "NVToggleAction";
[DataField] public EntityUid? ActionContainer;
}