Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -10,7 +10,7 @@ using Robust.Shared.IoC;
|
||||
|
||||
namespace Content.Server.Damage.Systems
|
||||
{
|
||||
public class DamageOnToolInteractSystem : EntitySystem
|
||||
public sealed class DamageOnToolInteractSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
|
||||
[Dependency] private readonly AdminLogSystem _logSystem = default!;
|
||||
|
||||
@@ -7,7 +7,7 @@ using Content.Shared.Throwing;
|
||||
|
||||
namespace Content.Server.Damage.Systems
|
||||
{
|
||||
public class DamageOtherOnHitSystem : EntitySystem
|
||||
public sealed class DamageOtherOnHitSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
|
||||
[Dependency] private readonly AdminLogSystem _logSystem = default!;
|
||||
|
||||
@@ -13,7 +13,7 @@ using Robust.Shared.Prototypes;
|
||||
|
||||
namespace Content.Server.Damage.Systems;
|
||||
|
||||
public class ExaminableDamageSystem : EntitySystem
|
||||
public sealed class ExaminableDamageSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly IPrototypeManager _prototype = default!;
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ using Robust.Shared.IoC;
|
||||
namespace Content.Server.Damage.Systems
|
||||
{
|
||||
[UsedImplicitly]
|
||||
public class GodmodeSystem : EntitySystem
|
||||
public sealed class GodmodeSystem : EntitySystem
|
||||
{
|
||||
private readonly Dictionary<EntityUid, OldEntityInformation> _entities = new();
|
||||
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
|
||||
@@ -95,7 +95,7 @@ namespace Content.Server.Damage.Systems
|
||||
}
|
||||
}
|
||||
|
||||
public class OldEntityInformation
|
||||
public sealed class OldEntityInformation
|
||||
{
|
||||
public OldEntityInformation(EntityUid entity, IEntityManager entityManager)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user