Files
tbd-station-14/Content.Shared/Movement/Events/WeightlessMoveEvent.cs
metalgearsloth 2b6c352aff Jetpacks (#9023)
* Movement acceleration

* tweaks

* Weightless refactor coz fuck it

* CCVars

* weightless movement tweaks

* Some cleanup while I'm here

* dorkpacks

* thanks fork

* fixes

* zoomies

* toggles

* hmm

* yamls

* b

* so true

* Effects refactor

* namespace

* review
2022-06-24 17:44:30 +10:00

15 lines
274 B
C#

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()
{
}
}