using Robust.Shared.Serialization; namespace Content.Shared.Weapons.Melee; /// /// Raised on the server and sent to a client to play the damage animation. /// [Serializable, NetSerializable] public sealed class DamageEffectEvent : EntityEventArgs { public EntityUid Entity; public DamageEffectEvent(EntityUid entity) { Entity = entity; } }