#nullable enable using System; using Content.Shared.GameObjects.Components.Body; namespace Content.Shared.GameObjects.Components.Damage { /// /// Data class with information on how to damage a /// . /// While not necessary to damage for all instances, classes such as /// may require it for extra data /// (such as selecting which limb to target). /// public class DamageChangeParams : EventArgs { } }