17 lines
552 B
C#
17 lines
552 B
C#
using Content.Server.Radiation.Systems;
|
|
|
|
namespace Content.Server.Radiation.Components;
|
|
|
|
/// <summary>
|
|
/// Grid component that stores radiation resistance of <see cref="RadiationBlockerComponent"/> per tile.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
[Access(typeof(RadiationSystem), Other = AccessPermissions.ReadExecute)]
|
|
public sealed partial class RadiationGridResistanceComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Radiation resistance per tile.
|
|
/// </summary>
|
|
public readonly Dictionary<Vector2i, float> ResistancePerTile = new();
|
|
}
|