www.pudn.com > WuZiQi_src.rar > Game.java


package game; 
 
/** 
 * 

Title: 五子棋

* *

Description: 五子棋游戏

* *

Copyright: Copyright (c) 2005

* *

Company: David Company

* * @author David * @version 1.0 */ public class Game { public Game() { try { jbInit(); } catch (Exception ex) { ex.printStackTrace(); } } public static void main(String[] args) { Game game = new Game(); GameFrame gFrame=new GameFrame(); gFrame.setVisible(true); } private void jbInit() throws Exception { } }