Files
tbd-station-14/Content.Shared/Movement/Components/MovementAlwaysTouchingComponent.cs
2022-08-08 10:18:14 +10:00

14 lines
348 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Movement.Components;
/// <summary>
/// Is this entity always considered to be touching a wall?
/// i.e. when weightless they're floaty but still have free movement.
/// </summary>
[RegisterComponent, NetworkedComponent]
public sealed class MovementAlwaysTouchingComponent : Component
{
}