mirror of
https://github.com/space-syndicate/space-station-14.git
synced 2026-02-15 01:15:13 +01:00
* Entity<T>, skipping Magazine and ChamberMagazine * missed some * AUGH!! * ballistic examine * dotnet hates me * WHY ARE YOU CALLED THAT!!!! * cheers aada
13 lines
304 B
C#
13 lines
304 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Weapons.Ranged.Events;
|
|
|
|
/// <summary>
|
|
/// Raised on the client to request it would like to stop shooting.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public sealed class RequestStopShootEvent : EntityEventArgs
|
|
{
|
|
public NetEntity Gun;
|
|
}
|