Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -2,7 +2,7 @@ using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Server.Weapon.Ranged.Ammunition.Components
|
||||
{
|
||||
public partial class AmmoComponentData : ISerializationHooks
|
||||
public sealed partial class AmmoComponentData : ISerializationHooks
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototy
|
||||
namespace Content.Server.Weapon.Ranged.Ammunition.Components
|
||||
{
|
||||
[RegisterComponent]
|
||||
public class RangedMagazineComponent : Component
|
||||
public sealed class RangedMagazineComponent : Component
|
||||
{
|
||||
public readonly Stack<EntityUid> SpawnedAmmo = new();
|
||||
public Container AmmoContainer = default!;
|
||||
|
||||
@@ -11,7 +11,7 @@ namespace Content.Server.Weapon.Ranged.Ammunition.Components
|
||||
/// Used to load certain ranged weapons quickly
|
||||
/// </summary>
|
||||
[RegisterComponent]
|
||||
public class SpeedLoaderComponent : Component
|
||||
public sealed class SpeedLoaderComponent : Component
|
||||
{
|
||||
[DataField("caliber")] public BallisticCaliber Caliber = BallisticCaliber.Unspecified;
|
||||
public int Capacity => _capacity;
|
||||
|
||||
Reference in New Issue
Block a user