parent
e2c4280e58
commit
2bd5655085
@ -1,24 +0,0 @@
|
|||||||
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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue