Files
tbd-station-14/Content.Shared/Throwing/LandEvent.cs
metalgearsloth 6c9ce79387 Add lava (#13438)
2023-01-17 11:25:32 -07:00

19 lines
519 B
C#

using JetBrains.Annotations;
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);
/// <summary>
/// Raised when a thrown entity is no longer moving.
/// </summary>
public sealed class StopThrowEvent : EntityEventArgs
{
public EntityUid? User;
}
}