mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
16 lines
409 B
C#
16 lines
409 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Movement.Components;
|
|
|
|
/// <summary>
|
|
/// Added to someone using a jetpack for movement purposes
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed class JetpackUserComponent : Component
|
|
{
|
|
public float Acceleration = 1f;
|
|
public float Friction = 0.3f;
|
|
public float WeightlessModifier = 1.2f;
|
|
public EntityUid Jetpack;
|
|
}
|