2022-09-29 15:51:59 +10:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Weapons.Melee.Events;
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public sealed class StopAttackEvent : EntityEventArgs
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
public readonly NetEntity Weapon;
|
2022-09-29 15:51:59 +10:00
|
|
|
|
2023-09-11 09:42:41 +10:00
|
|
|
public StopAttackEvent(NetEntity weapon)
|
2022-09-29 15:51:59 +10:00
|
|
|
{
|
|
|
|
|
Weapon = weapon;
|
|
|
|
|
}
|
|
|
|
|
}
|