diff --git a/src/Test.java b/src/Test.java deleted file mode 100644 index 6185187..0000000 --- a/src/Test.java +++ /dev/null @@ -1,20 +0,0 @@ -import javax.swing.*; - -public class Test { - public static void main(String[] args) { - Object[] objects={"人人对战","人机对战"}; - int a = JOptionPane.showOptionDialog(null,"请选择游戏模式","请选择",JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE,null, objects, objects[0]); - System.out.println(a); - if (a == 0){ - MyJFrame mj = new MyJFrame(); - mj.myJFrame(); - }else if (a == 1){ - MyJFrame_AI mjAI = new MyJFrame_AI(); - mjAI.myJFrame(); - }else{ - System.exit(0); - } - } -} - -