using Content.Server.Radiation.Systems;
using Content.Shared.Radiation.Components;
namespace Content.Server.Radiation.Components;
///
/// Marks component that receive radiation from .
///
[RegisterComponent]
[Access(typeof(RadiationSystem))]
public sealed partial class RadiationReceiverComponent : Component
{
///
/// Current radiation value in rads per second.
/// Periodically updated by radiation system.
///
[ViewVariables(VVAccess.ReadOnly)]
public float CurrentRadiation;
}