Co-authored-by: Moony <moonheart08@users.noreply.github.com> Co-authored-by: Kara <lunarautomaton6@gmail.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
20 lines
468 B
C#
20 lines
468 B
C#
using System;
|
|
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,
|
|
}
|
|
}
|