using Robust.Shared.GameStates; namespace Content.Shared.Physics; /// /// Use this to allow a specific UID to prevent collides /// [RegisterComponent, NetworkedComponent, AutoGenerateComponentState] public sealed partial class PreventCollideComponent : Component { [AutoNetworkedField] public EntityUid Uid; }