2022-05-29 02:29:10 -04:00
|
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Physics;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Use this to allow a specific UID to prevent collides
|
|
|
|
|
|
/// </summary>
|
2023-09-28 16:20:29 -07:00
|
|
|
|
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class PreventCollideComponent : Component
|
2022-05-29 02:29:10 -04:00
|
|
|
|
{
|
2023-09-28 16:20:29 -07:00
|
|
|
|
[AutoNetworkedField]
|
2022-05-29 02:29:10 -04:00
|
|
|
|
public EntityUid Uid;
|
|
|
|
|
|
}
|
|
|
|
|
|
|