mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
19 lines
529 B
C#
19 lines
529 B
C#
using Content.Shared.Physics;
|
|
using Content.Shared.Tools.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.Tools.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
[Access(typeof(WeldableSystem))]
|
|
public sealed partial class LayerChangeOnWeldComponent : Component
|
|
{
|
|
[DataField("unWeldedLayer")]
|
|
[ViewVariables]
|
|
public CollisionGroup UnWeldedLayer = CollisionGroup.AirlockLayer;
|
|
|
|
[DataField("weldedLayer")]
|
|
[ViewVariables]
|
|
public CollisionGroup WeldedLayer = CollisionGroup.WallLayer;
|
|
}
|