コード例 #1
0
  /**
   * This is a main method that launch the game
   *
   * @param args
   */
  public static void main(String[] args) {

    GameFactory factory = new GameFactory();
    GameView viewGame = new GameView(factory);
    viewGame.display();
  }