2023-05-14 13:15:18 +10:00
|
|
|
using Content.Shared.Timing;
|
|
|
|
|
using Content.Shared.Weapons.Ranged.Systems;
|
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Weapons.Ranged.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Applies UseDelay whenever the entity shoots.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(UseDelayOnShootSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class UseDelayOnShootComponent : Component
|
2023-05-14 13:15:18 +10:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|