Esempio n. 1
0
 /// <summary>
 ///     Attempts to perform surgery on this BodyPart with the given tool. Returns false if there was an error, true if successful.
 /// </summary>
 public bool AttemptSurgery(SurgeryToolType toolType, BodyManagerComponent target, IEntity performer)
 {
     return(_surgeryData.PerformSurgery(toolType, target, performer));
 }
Esempio n. 2
0
 /// <summary>
 ///     Attempts to perform surgery on this BodyPart with the given tool. Returns false if there was an error, true if successful.
 /// </summary>
 public bool AttemptSurgery(SurgeryType toolType, IBodyPartContainer target, ISurgeon surgeon, IEntity performer)
 {
     return(_surgeryData.PerformSurgery(toolType, target, surgeon, performer));
 }