Files
tbd-station-14/Content.Shared/Movement/Events/WeightlessMoveEvent.cs
2023-05-27 14:15:15 +10:00

11 lines
247 B
C#

namespace Content.Shared.Movement.Events;
/// <summary>
/// Raised on an entity to check if it can move while weightless.
/// </summary>
[ByRefEvent]
public record struct CanWeightlessMoveEvent(EntityUid Uid)
{
public bool CanMove = false;
}