Re-organize all projects (#4166)
This commit is contained in:
17
Content.Shared/Body/Part/BodyPartCompatibility.cs
Normal file
17
Content.Shared/Body/Part/BodyPartCompatibility.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user