public Builder withBody() { drawing.addBody(new HangmanBody()); return this; }
public Builder withNose() { drawing.addNose(new HangmanNose()); return this; }
public Builder withMouth() { drawing.addMouth(new HangmanMouth()); return this; }
public Builder withRightEye() { drawing.addRightEye(new HangmanEye()); return this; }
public Builder withLeftEye() { drawing.addLeftEye(new HangmanEye()); return this; }
public Builder withHead() { drawing.addHead(new HangmanHead()); return this; }
public Builder withRightLeg() { drawing.addRightLeg(new HangmanRightLeg()); return this; }
public Builder withLeftLeg() { drawing.addLeftLeg(new HangmanLeftLeg()); return this; }