11 lines
240 B
C#
11 lines
240 B
C#
namespace Content.Shared.Damage.Components;
|
|
|
|
/// <summary>
|
|
/// Tracks whether an entity has ANY stamina damage for update purposes only.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class ActiveStaminaComponent : Component
|
|
{
|
|
|
|
}
|