10.16
Posted 打得不错
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了10.16相关的知识,希望对你有一定的参考价值。
package XXX;
import java.awt.Color;
import com.rupeng.game.GameCore;
public class Game implements Runnable {
public static void main(String[] args) {
GameCore.start(new Game());
}
@Override
public void run() {
GameCore.setGameSize(1024, 768);
GameCore.setGameTitle("============");
GameCore.alert("请听第一首歌曲 《最初的梦想》");
GameCore.loadBgView("XX.jpg");
GameCore.playSound("最初的梦想.mp3", true);
GameCore.closeSound("最初的梦想.mp3");
boolean b = GameCore.confirm("你觉得好听吗?");
if (b)
GameCore.alert("你的回答是好听");
else
GameCore.alert("你的回答是不好听.");
}
}
以上是关于10.16的主要内容,如果未能解决你的问题,请参考以下文章