示例#1
0
 public void setGraphicGameSize(int width, int height) {
   if (width > 0 && height > 0) {
     model.setGraphicSize(width, height);
   }
 }
示例#2
0
 public void changeTrayForm(Shape shape) {
   model.changeTrayForm(shape);
 }
示例#3
0
 public void newGame(int size) throws BadTraySizeException, GameRunningException {
   model.newGame(size);
 }