6
StarHorizon_Public/Content.Shared/_RMC14/Actions/ActionCooldownComponent.cs
2026-01-24 12:49:55 +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;
}