Files
crystall-punk-14/Content.Shared/Body/Part/BodyPartCompatibility.cs

18 lines
381 B
C#
Raw Normal View History

#nullable enable
using System;
using Robust.Shared.Serialization;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.Body.Part
{
/// <summary>
/// Determines whether two <see cref="SharedBodyPartComponent"/>s can connect.
/// </summary>
[Serializable, NetSerializable]
public enum BodyPartCompatibility
{
Universal = 0,
Biological,
Mechanical
}
}