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