2022-08-08 10:18:14 +10:00
|
|
|
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]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class MovementAlwaysTouchingComponent : Component
|
2022-08-08 10:18:14 +10:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|