mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
19 lines
454 B
C#
19 lines
454 B
C#
using Content.Shared.Body.Components;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Body.Part
|
|
{
|
|
//TODO: This should be a prototype. --DrSmugleaf
|
|
/// <summary>
|
|
/// Determines whether two <see cref="SharedBodyPartComponent"/>s can connect.
|
|
/// </summary>
|
|
[Serializable, NetSerializable]
|
|
public enum BodyPartCompatibility
|
|
{
|
|
Universal = 0,
|
|
Biological,
|
|
Mechanical,
|
|
Slime,
|
|
}
|
|
}
|