Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -8,7 +8,7 @@ namespace Content.Server.Resist;
|
||||
|
||||
[RegisterComponent]
|
||||
[Friend(typeof(ResistLockerSystem))]
|
||||
public class ResistLockerComponent : Component
|
||||
public sealed class ResistLockerComponent : Component
|
||||
{
|
||||
/// <summary>
|
||||
/// How long will this locker take to kick open, defaults to 2 minutes
|
||||
|
||||
@@ -11,7 +11,7 @@ using Robust.Shared.Localization;
|
||||
|
||||
namespace Content.Server.Resist;
|
||||
|
||||
public class ResistLockerSystem : EntitySystem
|
||||
public sealed class ResistLockerSystem : EntitySystem
|
||||
{
|
||||
[Dependency] private readonly DoAfterSystem _doAfterSystem = default!;
|
||||
[Dependency] private readonly PopupSystem _popupSystem = default!;
|
||||
@@ -90,8 +90,8 @@ public class ResistLockerSystem : EntitySystem
|
||||
{
|
||||
component.CancelToken?.Cancel();
|
||||
}
|
||||
|
||||
private class ResistDoAfterComplete : EntityEventArgs
|
||||
|
||||
private sealed class ResistDoAfterComplete : EntityEventArgs
|
||||
{
|
||||
public readonly EntityUid User;
|
||||
public readonly EntityUid Target;
|
||||
@@ -102,7 +102,7 @@ public class ResistLockerSystem : EntitySystem
|
||||
}
|
||||
}
|
||||
|
||||
private class ResistDoAfterCancelled : EntityEventArgs
|
||||
private sealed class ResistDoAfterCancelled : EntityEventArgs
|
||||
{
|
||||
public readonly EntityUid User;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user