Example #1
0
 public void setPenColor(Color color) {
   myGame.setPenColor(color);
 }
Example #2
0
 public Color getPenColor() {
   return myGame.getPenColor();
 }
Example #3
0
 public String getCurrentTurtleImage() {
   return myGame.getCurrentTurtleImage();
 }
Example #4
0
 public void setPenColor(String string) {
   myGame.setPenColor(string);
 }
Example #5
0
 public void setTurtleImage(String str) {
   myGame.setImage(str);
 }
Example #6
0
 public void setBackground(String string) {
   myGame.setBackground(string);
 }