Files
tbd-station-14/Content.Shared/Throwing/LandEvent.cs
metalgearsloth 321f337572 Add spear embedding (#18578)
* Add spear embedding

* fuck this copy-paste

* Juicier

* the river
2023-08-04 02:56:39 -06:00

17 lines
505 B
C#

namespace Content.Shared.Throwing
{
/// <summary>
/// Raised when an entity that was thrown lands. This occurs before they stop moving and is when their tile-friction is reapplied.
/// </summary>
[ByRefEvent]
public readonly record struct LandEvent(EntityUid? User, bool PlaySound);
/// <summary>
/// Raised when a thrown entity is no longer moving.
/// </summary>
public sealed class StopThrowEvent : EntityEventArgs
{
public EntityUid? User;
}
}