Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -10,7 +10,7 @@ using Robust.Shared.IoC;
|
||||
|
||||
namespace Content.Server.Body.Systems;
|
||||
|
||||
public class BloodstreamSystem : EntitySystem
|
||||
public sealed class BloodstreamSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
|
||||
[Dependency] private readonly AtmosphereSystem _atmosSystem = default!;
|
||||
|
||||
@@ -9,7 +9,7 @@ using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Body.Systems
|
||||
{
|
||||
public class BrainSystem : EntitySystem
|
||||
public sealed class BrainSystem : EntitySystem
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
|
||||
@@ -5,7 +5,7 @@ using Robust.Shared.GameObjects;
|
||||
|
||||
namespace Content.Server.Body.Systems;
|
||||
|
||||
public class InternalsSystem : EntitySystem
|
||||
public sealed class InternalsSystem : EntitySystem
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
|
||||
@@ -12,7 +12,7 @@ using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Server.Body.Systems;
|
||||
|
||||
public class LungSystem : EntitySystem
|
||||
public sealed class LungSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
|
||||
[Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!;
|
||||
|
||||
@@ -18,7 +18,7 @@ using Robust.Shared.Random;
|
||||
namespace Content.Server.Body.Systems
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class MetabolizerSystem : EntitySystem
|
||||
public sealed class MetabolizerSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
|
||||
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
|
||||
|
||||
@@ -21,7 +21,7 @@ using Robust.Shared.Timing;
|
||||
namespace Content.Server.Body.Systems
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class RespiratorSystem : EntitySystem
|
||||
public sealed class RespiratorSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly DamageableSystem _damageableSys = default!;
|
||||
[Dependency] private readonly AdminLogSystem _logSys = default!;
|
||||
@@ -192,12 +192,12 @@ namespace Content.Server.Body.Systems
|
||||
}
|
||||
}
|
||||
|
||||
public class InhaleLocationEvent : EntityEventArgs
|
||||
public sealed class InhaleLocationEvent : EntityEventArgs
|
||||
{
|
||||
public GasMixture? Gas;
|
||||
}
|
||||
|
||||
public class ExhaleLocationEvent : EntityEventArgs
|
||||
public sealed class ExhaleLocationEvent : EntityEventArgs
|
||||
{
|
||||
public GasMixture? Gas;
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ using Robust.Shared.Utility;
|
||||
|
||||
namespace Content.Server.Body.Systems
|
||||
{
|
||||
public class StomachSystem : EntitySystem
|
||||
public sealed class StomachSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly SolutionContainerSystem _solutionContainerSystem = default!;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ using Robust.Shared.IoC;
|
||||
|
||||
namespace Content.Server.Body.Systems;
|
||||
|
||||
public class ThermalRegulatorSystem : EntitySystem
|
||||
public sealed class ThermalRegulatorSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly TemperatureSystem _tempSys = default!;
|
||||
[Dependency] private readonly ActionBlockerSystem _actionBlockerSys = default!;
|
||||
|
||||
Reference in New Issue
Block a user