Adjust file namespace scope (#19824)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user