mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
11 lines
264 B
C#
11 lines
264 B
C#
using Content.Shared.Standing;
|
|
|
|
namespace Content.Shared._White.Collision.LayDown;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class LayDownOnCollideComponent : Component
|
|
{
|
|
[DataField]
|
|
public DropHeldItemsBehavior Behavior = DropHeldItemsBehavior.NoDrop;
|
|
}
|