mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
17 lines
373 B
C#
17 lines
373 B
C#
using System;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.GameObjects.Components.Body.Part
|
|
{
|
|
/// <summary>
|
|
/// Determines whether two <see cref="IBodyPart"/>s can connect.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum BodyPartCompatibility
|
|
{
|
|
Universal = 0,
|
|
Biological,
|
|
Mechanical
|
|
}
|
|
}
|