13 lines
370 B
C#
13 lines
370 B
C#
|
|
using Robust.Shared.GameStates;
|
||
|
|
|
||
|
|
namespace Content.Shared.Clothing.Components;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Disables client-side physics prediction for this entity.
|
||
|
|
/// Without this, movement with <see cref="PilotedClothingSystem"/> is very rubberbandy.
|
||
|
|
/// </summary>
|
||
|
|
[RegisterComponent, NetworkedComponent]
|
||
|
|
public sealed partial class PilotedByClothingComponent : Component
|
||
|
|
{
|
||
|
|
}
|