Adjust file namespace scope (#19824)

This commit is contained in:
chromiumboy
2023-09-07 13:49:55 -05:00
committed by GitHub
parent 005e89c352
commit ad9c4433f4
2 changed files with 204 additions and 208 deletions

View File

@@ -1,10 +1,8 @@
using Content.Server.Singularity.EntitySystems;
using Content.Shared.Atmos;
using Content.Shared.Atmos.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Singularity.Components
{
namespace Content.Server.Singularity.Components;
/// <summary>
/// Generates electricity from radiation.
/// </summary>
@@ -87,4 +85,3 @@ namespace Content.Server.Singularity.Components
[DataField("molarRatio")]
public float MolarRatio = 1f;
}
}

View File

@@ -11,8 +11,8 @@ using Content.Shared.Examine;
using Content.Server.Atmos;
using System.Diagnostics.CodeAnalysis;
namespace Content.Server.Singularity.EntitySystems
{
namespace Content.Server.Singularity.EntitySystems;
public sealed class RadiationCollectorSystem : EntitySystem
{
[Dependency] private readonly IGameTiming _gameTiming = default!;
@@ -158,4 +158,3 @@ namespace Content.Server.Singularity.EntitySystems
_appearance.SetData(uid, RadiationCollectorVisuals.VisualState, state, appearance);
}
}
}