10 lines
323 B
C#
10 lines
323 B
C#
|
|
namespace Content.Shared.BodySystem
|
|
{
|
|
public enum BodyPartCompatibility { Mechanical, Biological, Universal };
|
|
public enum BodyPartType { Other, Torso, Head, Arm, Hand, Leg, Foot };
|
|
public enum SurgeryToolType { Incision, Retraction, Cauterization, VesselCompression, Drilling, BoneSawing, Amputation }
|
|
|
|
|
|
}
|