Files
wwdpublic/Content.Shared/Weapons/Ranged/Events/RequestStopShootEvent.cs
2023-09-27 21:59:12 +02:00

13 lines
303 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Weapons.Ranged.Events;
/// <summary>
/// Raised on the client to request it would like to stop hooting.
/// </summary>
[Serializable, NetSerializable]
public sealed class RequestStopShootEvent : EntityEventArgs
{
public NetEntity Gun;
}