2022-05-09 08:51:52 +03:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Tools.Components;
|
|
|
|
|
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class SharedWeldableComponent : Component
|
2022-05-09 08:51:52 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum WeldableVisuals : byte
|
|
|
|
|
{
|
|
|
|
|
IsWelded
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum WeldableLayers : byte
|
|
|
|
|
{
|
|
|
|
|
BaseWelded
|
|
|
|
|
}
|