2021-07-17 02:37:09 +02:00
|
|
|
|
using System;
|
2021-11-11 16:10:57 -07:00
|
|
|
|
using Content.Shared.Body.Components;
|
2020-10-10 15:25:13 +02:00
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.Body.Part
|
2020-10-10 15:25:13 +02:00
|
|
|
|
{
|
2022-01-08 19:53:14 -06:00
|
|
|
|
//TODO: This should be a prototype. --DrSmugleaf
|
2020-10-10 15:25:13 +02:00
|
|
|
|
/// <summary>
|
2021-06-16 16:44:38 +02:00
|
|
|
|
/// Determines whether two <see cref="SharedBodyPartComponent"/>s can connect.
|
2020-10-10 15:25:13 +02:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum BodyPartCompatibility
|
|
|
|
|
|
{
|
|
|
|
|
|
Universal = 0,
|
|
|
|
|
|
Biological,
|
2022-01-08 19:53:14 -06:00
|
|
|
|
Mechanical,
|
|
|
|
|
|
Slime
|
2020-10-10 15:25:13 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|