Seal/abstract/virtual everything (#6739)
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Melee
|
||||
/// <summary>
|
||||
/// Raised directed on the used entity when a target entity is click attacked by a user.
|
||||
/// </summary>
|
||||
public class ClickAttackEvent : HandledEntityEventArgs
|
||||
public sealed class ClickAttackEvent : HandledEntityEventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Entity used to attack, for broadcast purposes.
|
||||
@@ -41,7 +41,7 @@ namespace Content.Shared.Weapons.Melee
|
||||
/// <summary>
|
||||
/// Raised directed on the used entity when a target entity is wide attacked by a user.
|
||||
/// </summary>
|
||||
public class WideAttackEvent : HandledEntityEventArgs
|
||||
public sealed class WideAttackEvent : HandledEntityEventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Entity used to attack, for broadcast purposes.
|
||||
@@ -69,7 +69,7 @@ namespace Content.Shared.Weapons.Melee
|
||||
/// <summary>
|
||||
/// Event raised on entities that have been attacked.
|
||||
/// </summary>
|
||||
public class AttackedEvent : EntityEventArgs
|
||||
public sealed class AttackedEvent : EntityEventArgs
|
||||
{
|
||||
/// <summary>
|
||||
/// Entity used to attack, for broadcast purposes.
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.Serialization;
|
||||
namespace Content.Shared.Weapons.Ranged.Barrels.Components
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class BoltActionBarrelComponentState : ComponentState
|
||||
public sealed class BoltActionBarrelComponentState : ComponentState
|
||||
{
|
||||
public (bool chambered, bool spent) Chamber { get; }
|
||||
public FireRateSelector FireRateSelector { get; }
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace Content.Shared.Weapons.Ranged.Barrels.Components
|
||||
}
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public class MagazineBarrelComponentState : ComponentState
|
||||
public sealed class MagazineBarrelComponentState : ComponentState
|
||||
{
|
||||
public bool Chambered { get; }
|
||||
public FireRateSelector FireRateSelector { get; }
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.Serialization;
|
||||
namespace Content.Shared.Weapons.Ranged.Barrels.Components
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class PumpBarrelComponentState : ComponentState
|
||||
public sealed class PumpBarrelComponentState : ComponentState
|
||||
{
|
||||
public (bool chambered, bool spent) Chamber { get; }
|
||||
public FireRateSelector FireRateSelector { get; }
|
||||
|
||||
@@ -6,7 +6,7 @@ using Robust.Shared.Serialization;
|
||||
namespace Content.Shared.Weapons.Ranged.Barrels.Components
|
||||
{
|
||||
[Serializable, NetSerializable]
|
||||
public class RevolverBarrelComponentState : ComponentState
|
||||
public sealed class RevolverBarrelComponentState : ComponentState
|
||||
{
|
||||
public int CurrentSlot { get; }
|
||||
public FireRateSelector FireRateSelector { get; }
|
||||
|
||||
Reference in New Issue
Block a user