diff --git a/src/Test.java b/src/Test.java new file mode 100644 index 0000000..b786e56 --- /dev/null +++ b/src/Test.java @@ -0,0 +1,24 @@ +package impl; + +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); + SoundPlayer player = new SoundPlayer("music01.wav"); + player.play(); + 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); + } + } +} + +