10.16 一起去修仙 !mv

package cn.dede.w;

import com.rupeng.game.GameCore;

public class Cywzplay implements Runnable {

public static void main(String[] args) {
// TODO 自动生成的方法存根
GameCore.start(new Cywzplay());

}
public void run()
{
GameCore.setGameSize(1200, 700);//设置游戏窗口大小
GameCore.setGameTitle("去修仙");//设置游戏窗口标题
GameCore.loadBgView("eh1.jpg");
GameCore.playSound("马思唯 - 崂山道士.mp3", true);
GameCore.pause(20000);
boolean b = GameCore.confirm("一起修仙吗?");
if (b)
GameCore.alert("穿墙术!");
else
GameCore.alert("修修修,修什么修!");
}

}

原文地址:https://www.cnblogs.com/dede-6/p/7705039.html