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