Files
crystall-punk-14/Content.Shared/Throwing/LandEvent.cs

22 lines
552 B
C#
Raw Normal View History

using JetBrains.Annotations;
2021-06-09 22:19:39 +02:00
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>
[PublicAPI]
public sealed class LandEvent : EntityEventArgs
{
public EntityUid? User;
}
/// <summary>
/// Raised when a thrown entity is no longer moving.
/// </summary>
public sealed class StopThrowEvent : EntityEventArgs
{
public EntityUid? User;
}
}