Files
tbd-station-14/Content.Shared/Damage/Events/DamageExamineEvent.cs
slarticodefast a6dce11566 Predict damage examine (#40168)
* predict damage examine

* .

* required true

* nits

---------

Co-authored-by: ArtisticRoomba <145879011+ArtisticRoomba@users.noreply.github.com>
2025-10-10 23:23:26 +00:00

11 lines
386 B
C#

using Content.Shared.Damage.Components;
using Robust.Shared.Utility;
namespace Content.Shared.Damage.Events;
/// <summary>
/// Raised on an entity with <see cref="DamageExaminableComponent"/> when examined to get the damage values displayed in the examine window.
/// </summary>
[ByRefEvent]
public readonly record struct DamageExamineEvent(FormattedMessage Message, EntityUid User);