Files
crystall-punk-14/Content.Shared/Health/BodySystem/BodysystemValues.cs
DrSmugleaf 4a8ed41e3a Fix namespaces and optimize imports (#1651)
* Fix namespaces and optimize imports

* Cleanup fixes

* Merge conflict fixes

* Merge conflict fixes

* Merge conflict fixes
2020-08-13 14:40:27 +02:00

21 lines
699 B
C#

namespace Content.Shared.Health.BodySystem
{
/// <summary>
/// Used to determine whether a BodyPart can connect to another BodyPart.
/// </summary>
public enum BodyPartCompatibility { Universal, Biological, Mechanical };
/// <summary>
/// Each BodyPart has a BodyPartType used to determine a variety of things - for instance, what slots it can fit into.
/// </summary>
public enum BodyPartType { Other, Torso, Head, Arm, Hand, Leg, Foot };
/// <summary>
/// Defines a surgery operation that can be performed.
/// </summary>
public enum SurgeryType { Incision, Retraction, Cauterization, VesselCompression, Drilling, Amputation }
}