Files
crystall-punk-14/Content.Shared/Movement/Events/WeightlessMoveEvent.cs

15 lines
274 B
C#
Raw Normal View History

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