Files
crystall-punk-14/Content.Shared/GameObjects/Components/Movement/MovementIgnoreGravityComponent.cs

11 lines
262 B
C#
Raw Normal View History

using Robust.Shared.GameObjects;
namespace Content.Shared.GameObjects.Components.Movement
{
[RegisterComponent]
public sealed class MovementIgnoreGravityComponent : Component
{
public override string Name => "MovementIgnoreGravity";
}
}