6
StarHorizon_Public/Content.Shared/_RMC14/Actions/ActionCooldownComponent.cs
2025-12-13 13:46:17 +03:00

12 lines
315 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._RMC14.Actions;
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
[Access(typeof(RMCActionsSystem))]
public sealed partial class ActionCooldownComponent : Component
{
[DataField, AutoNetworkedField]
public TimeSpan Cooldown;
}