Files
tbd-station-14/Content.Shared/Damage/Systems/DamageableSystem.BenchmarkHelpers.cs
Princess Cheeseballs 3a9bcf1a83 Damageable/Destructible Benchmarks (#41064)
* the fard

* oomba

* The woke swarm...

* Review

* review

* Apply suggestions from code review

---------

Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com>
2025-10-27 02:46:27 +00:00

16 lines
470 B
C#

namespace Content.Shared.Damage;
public sealed partial class DamageableSystem
{
/// <summary>
/// Applies damage to all entities to see how expensive it is to deal damage.
/// </summary>
public void ApplyDamageToAllEntities(List<Entity<DamageableComponent>> damageables, DamageSpecifier damage)
{
foreach (var (uid, damageable) in damageables)
{
TryChangeDamage(uid, damage, damageable: damageable);
}
}
}