Files
tbd-station-14/Content.Shared/Weapons/Ranged/Events/MuzzleFlashEvent.cs
2022-08-09 14:30:32 +10:00

20 lines
459 B
C#

using Robust.Shared.Serialization;
namespace Content.Shared.Weapons.Ranged.Events;
/// <summary>
/// Raised whenever a muzzle flash client-side entity needs to be spawned.
/// </summary>
[Serializable, NetSerializable]
public sealed class MuzzleFlashEvent : EntityEventArgs
{
public EntityUid Uid;
public string Prototype;
public MuzzleFlashEvent(EntityUid uid, string prototype)
{
Uid = uid;
Prototype = prototype;
}
}