Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -5,7 +5,7 @@ namespace Content.Server.Singularity.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(SharedContainmentFieldComponent))]
|
||||
public class ContainmentFieldComponent : SharedContainmentFieldComponent
|
||||
public sealed class ContainmentFieldComponent : SharedContainmentFieldComponent
|
||||
{
|
||||
public ContainmentFieldConnection? Parent;
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ using Timer = Robust.Shared.Timing.Timer;
|
||||
|
||||
namespace Content.Server.Singularity.Components
|
||||
{
|
||||
public class ContainmentFieldConnection : IDisposable
|
||||
public sealed class ContainmentFieldConnection : IDisposable
|
||||
{
|
||||
public readonly ContainmentFieldGeneratorComponent Generator1;
|
||||
public readonly ContainmentFieldGeneratorComponent Generator2;
|
||||
|
||||
@@ -15,7 +15,7 @@ namespace Content.Server.Singularity.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(SharedContainmentFieldGeneratorComponent))]
|
||||
public class ContainmentFieldGeneratorComponent : SharedContainmentFieldGeneratorComponent
|
||||
public sealed class ContainmentFieldGeneratorComponent : SharedContainmentFieldGeneratorComponent
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entMan = default!;
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Singularity.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class EmitterComponent : Component
|
||||
public sealed class EmitterComponent : Component
|
||||
{
|
||||
public CancellationTokenSource? TimerCancel;
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Singularity.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class RadiationCollectorComponent : Component, IInteractHand, IRadiationAct
|
||||
public sealed class RadiationCollectorComponent : Component, IInteractHand, IRadiationAct
|
||||
{
|
||||
[Dependency] private readonly IGameTiming _gameTiming = default!;
|
||||
[Dependency] private readonly IEntityManager _entMan = default!;
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Content.Server.Singularity.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(SharedSingularityComponent))]
|
||||
public class ServerSingularityComponent : SharedSingularityComponent
|
||||
public sealed class ServerSingularityComponent : SharedSingularityComponent
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entMan = default!;
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ using Robust.Shared.ViewVariables;
|
||||
namespace Content.Server.Singularity.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class SingularityGeneratorComponent : Component
|
||||
public sealed class SingularityGeneratorComponent : Component
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entMan = default!;
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ namespace Content.Server.Singularity.Components
|
||||
/// Overrides exactly how much energy this object gives to a singularity.
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
public class SinguloFoodComponent : Component
|
||||
public sealed class SinguloFoodComponent : Component
|
||||
{
|
||||
[ViewVariables(VVAccess.ReadWrite)]
|
||||
[DataField("energy")]
|
||||
|
||||
Reference in New Issue
Block a user