Files
crystall-punk-14/Content.Shared/Weapons/Melee/Events/StartHeavyAttackEvent.cs

15 lines
307 B
C#
Raw Normal View History

using Robust.Shared.Serialization;
namespace Content.Shared.Weapons.Melee.Events;
[Serializable, NetSerializable]
public sealed class StartHeavyAttackEvent : EntityEventArgs
{
public readonly EntityUid Weapon;
public StartHeavyAttackEvent(EntityUid weapon)
{
Weapon = weapon;
}
}