Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -34,7 +34,7 @@ namespace Content.Server.ParticleAccelerator.Components
|
||||
/// </summary>
|
||||
[ComponentReference(typeof(IActivate))]
|
||||
[RegisterComponent]
|
||||
public class ParticleAcceleratorControlBoxComponent : ParticleAcceleratorPartComponent, IActivate, IWires
|
||||
public sealed class ParticleAcceleratorControlBoxComponent : ParticleAcceleratorPartComponent, IActivate, IWires
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entMan = default!;
|
||||
[Dependency] private readonly IMapManager _mapManager = default!;
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Content.Server.ParticleAccelerator.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(ParticleAcceleratorPartComponent))]
|
||||
public class ParticleAcceleratorEmitterComponent : ParticleAcceleratorPartComponent
|
||||
public sealed class ParticleAcceleratorEmitterComponent : ParticleAcceleratorPartComponent
|
||||
{
|
||||
[DataField("emitterType")]
|
||||
public ParticleAcceleratorEmitterType Type = ParticleAcceleratorEmitterType.Center;
|
||||
|
||||
@@ -4,7 +4,7 @@ namespace Content.Server.ParticleAccelerator.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(ParticleAcceleratorPartComponent))]
|
||||
public class ParticleAcceleratorEndCapComponent : ParticleAcceleratorPartComponent
|
||||
public sealed class ParticleAcceleratorEndCapComponent : ParticleAcceleratorPartComponent
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ namespace Content.Server.ParticleAccelerator.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(ParticleAcceleratorPartComponent))]
|
||||
public class ParticleAcceleratorFuelChamberComponent : ParticleAcceleratorPartComponent
|
||||
public sealed class ParticleAcceleratorFuelChamberComponent : ParticleAcceleratorPartComponent
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ namespace Content.Server.ParticleAccelerator.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(ParticleAcceleratorPartComponent))]
|
||||
public class ParticleAcceleratorPowerBoxComponent : ParticleAcceleratorPartComponent
|
||||
public sealed class ParticleAcceleratorPowerBoxComponent : ParticleAcceleratorPartComponent
|
||||
{
|
||||
[ViewVariables] public PowerConsumerComponent? PowerConsumerComponent;
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ using Robust.Shared.Timing;
|
||||
namespace Content.Server.ParticleAccelerator.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class ParticleProjectileComponent : Component
|
||||
public sealed class ParticleProjectileComponent : Component
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entMan = default!;
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.IoC;
|
||||
namespace Content.Server.ParticleAccelerator.EntitySystems
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class ParticleAcceleratorPartSystem : EntitySystem
|
||||
public sealed class ParticleAcceleratorPartSystem : EntitySystem
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.GameObjects;
|
||||
namespace Content.Server.ParticleAccelerator.EntitySystems
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class ParticleAcceleratorPowerBoxSystem : EntitySystem
|
||||
public sealed class ParticleAcceleratorPowerBoxSystem : EntitySystem
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user