2022-06-24 17:44:30 +10:00
|
|
|
namespace Content.Shared.Movement.Events;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Raised on an entity to check if it can move while weightless.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ByRefEvent]
|
2023-05-27 14:15:15 +10:00
|
|
|
public record struct CanWeightlessMoveEvent(EntityUid Uid)
|
2022-06-24 17:44:30 +10:00
|
|
|
{
|
|
|
|
|
public bool CanMove = false;
|
|
|
|
|
}
|