Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -22,7 +22,7 @@ namespace Content.Server.Climbing.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
[ComponentReference(typeof(IClimbable))]
|
||||
public class ClimbableComponent : SharedClimbableComponent
|
||||
public sealed class ClimbableComponent : SharedClimbableComponent
|
||||
{
|
||||
[Dependency] private readonly IEntityManager _entities = default!;
|
||||
|
||||
@@ -260,7 +260,7 @@ namespace Content.Server.Climbing.Components
|
||||
/// <summary>
|
||||
/// Raised on an entity when it is climbed on.
|
||||
/// </summary>
|
||||
public class ClimbedOnEvent : EntityEventArgs
|
||||
public sealed class ClimbedOnEvent : EntityEventArgs
|
||||
{
|
||||
public EntityUid Climber;
|
||||
|
||||
@@ -273,7 +273,7 @@ public class ClimbedOnEvent : EntityEventArgs
|
||||
/// <summary>
|
||||
/// Raised on an entity when it successfully climbs on something.
|
||||
/// </summary>
|
||||
public class StartClimbEvent : EntityEventArgs
|
||||
public sealed class StartClimbEvent : EntityEventArgs
|
||||
{
|
||||
public EntityUid Climbable;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user