Files
19 lines
545 B
C#
19 lines
545 B
C#
|
|
using Content.Shared.Wieldable;
|
||
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
using Robust.Shared.GameStates;
|
||
|
|||
namespace Content.Shared.Weapons.Ranged.Components;
|
|||
|
|||
/// <summary>
|
|||
/// Indicates that this gun requires wielding to be useable.
|
|||
/// </summary>
|
|||
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
|||
[Access(typeof(WieldableSystem))]
|
|||
|
|
public sealed partial class GunRequiresWieldComponent : Component
|
||
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
{
|
||
[DataField, AutoNetworkedField]
|
|||
public TimeSpan LastPopup;
|
|||
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
|
||
[DataField, AutoNetworkedField]
|
|||
public TimeSpan PopupCooldown = TimeSpan.FromSeconds(1);
|
|||
|
Proto-kinetic crusher (#16277)
Co-authored-by: AJCM-git <60196617+AJCM-git@users.noreply.github.com>
|
}
|