Radiation rework (#10970)

This commit is contained in:
Alex Evgrashin
2022-10-11 05:09:10 +02:00
committed by GitHub
parent 667fc1970d
commit 7d882f22c9
34 changed files with 1010 additions and 46 deletions

View File

@@ -0,0 +1,20 @@
using Content.Server.Radiation.Systems;
using Content.Shared.Radiation.Components;
namespace Content.Server.Radiation.Components;
/// <summary>
/// Marks component that receive radiation from <see cref="RadiationSourceComponent"/>.
/// </summary>
[RegisterComponent]
[Access(typeof(RadiationSystem))]
public sealed class RadiationReceiverComponent : Component
{
/// <summary>
/// Current radiation value in rads per second.
/// Periodically updated by radiation system.
/// </summary>
[ViewVariables(VVAccess.ReadOnly)]
public float CurrentRadiation;
}