14 lines
372 B
C#
14 lines
372 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Movement.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Added to an enabled jetpack. Tracks gas usage on server / effect spawning on client.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed class ActiveJetpackComponent : Component
|
||
|
|
{
|
||
|
|
public float EffectCooldown = 0.3f;
|
||
|
|
public float Accumulator = 0f;
|
||
|
|
}
|