* Convert StomachBehavior to a component/system + rejig body namespaces * test * slightly more namespace changes * remove * Hello????? * fuck you github test runner * reviews * oobsy!
18 lines
402 B
C#
18 lines
402 B
C#
using System;
|
|
using Content.Shared.Body.Components;
|
|
using Robust.Shared.Serialization;
|
|
|
|
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
|
|
}
|
|
}
|