6
StarHorizon_Public/Content.Shared/Movement/Components/MovementAlwaysTouchingComponent.cs
2025-12-13 13:46:17 +03:00

14 lines
356 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 partial class MovementAlwaysTouchingComponent : Component
{
}