14 lines
348 B
C#
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
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|