6
StarHorizon_Public/Content.Shared/_RMC14/Wieldable/Components/WieldSlowdownCompensationUserComponent.cs
2025-12-13 13:46:17 +03:00

15 lines
396 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._RMC14.Wieldable;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(RMCWieldableSystem))]
public sealed partial class WieldSlowdownCompensationUserComponent : Component
{
[DataField, AutoNetworkedField]
public float Walk = 0f;
[DataField, AutoNetworkedField]
public float Sprint = 0f;
}