2021-02-27 04:12:09 +01:00
|
|
|
|
#nullable enable
|
|
|
|
|
|
using System;
|
2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Shared.Body.Components;
|
|
|
|
|
|
using Content.Shared.Damage.Components;
|
2020-12-07 14:52:55 +01:00
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.Damage
|
2020-12-07 14:52:55 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Data class with information on how to damage a
|
|
|
|
|
|
/// <see cref="IDamageableComponent"/>.
|
|
|
|
|
|
/// While not necessary to damage for all instances, classes such as
|
|
|
|
|
|
/// <see cref="SharedBodyComponent"/> may require it for extra data
|
|
|
|
|
|
/// (such as selecting which limb to target).
|
|
|
|
|
|
/// </summary>
|
2021-06-16 16:44:38 +02:00
|
|
|
|
// TODO BODY: Remove and pretend it never existed
|
2020-12-07 14:52:55 +01:00
|
|
|
|
public class DamageChangeParams : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|