using Content.Server.Radiation.Systems;
namespace Content.Server.Radiation.Components;
///
/// Grid component that stores radiation resistance of per tile.
///
[RegisterComponent]
[Access(typeof(RadiationSystem), Other = AccessPermissions.ReadExecute)]
public sealed partial class RadiationGridResistanceComponent : Component
{
///
/// Radiation resistance per tile.
///
public readonly Dictionary ResistancePerTile = new();
}